<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in wait.h</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>0fc8f6200d2313278fbf4539bbab74677c685531 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/include/nolibc/sys/wait.h#0fc8f6200d2313278fbf4539bbab74677c685531</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesGetting fixes and updates from v7.1-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/tools/include/nolibc/sys/wait.h</description>
        <pubDate>Mon, 27 Apr 2026 10:26:49 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>f4b369c6fe0ceaba2da2daff8c9eb415f85926dd - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/include/nolibc/sys/wait.h#f4b369c6fe0ceaba2da2daff8c9eb415f85926dd</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 7.1 merge window.

            List of files:
            /linux/tools/include/nolibc/sys/wait.h</description>
        <pubDate>Mon, 20 Apr 2026 03:28:57 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>0421ccdfad0d92713a812a5aeb7d07b0ea7213c8 - Merge tag &apos;v7.0-rc3&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/include/nolibc/sys/wait.h#0421ccdfad0d92713a812a5aeb7d07b0ea7213c8</link>
        <description>Merge tag &apos;v7.0-rc3&apos; into nextSync up with the mainline to brig up the latest changes, specificallychanges to ALPS driver.

            List of files:
            /linux/tools/include/nolibc/sys/wait.h</description>
        <pubDate>Thu, 12 Mar 2026 18:44:42 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>ee60c510fb3468ec6fab98419218c4e7b37e2ca3 - Merge tag &apos;nolibc-20260412-for-7.1-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/nolibc/linux-nolibc</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/include/nolibc/sys/wait.h#ee60c510fb3468ec6fab98419218c4e7b37e2ca3</link>
        <description>Merge tag &apos;nolibc-20260412-for-7.1-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/nolibc/linux-nolibcPull nolibc updates from Thomas Wei&#223;schuh: - Many new features and optimizations to printf() - Rename non-standard symbols to avoid collisions with application code - Support for byteswap.h, endian.h, err.h and asprintf() - 64-bit dev_t - Smaller cleanups and fixes to the code and build system* tag &apos;nolibc-20260412-for-7.1-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/nolibc/linux-nolibc: (61 commits)  selftests/nolibc: use gcc 15  tools/nolibc: support UBSAN on gcc  tools/nolibc: create __nolibc_no_sanitize_ubsan  selftests/nolibc: don&apos;t skip tests for unimplemented syscalls anymore  selftests/nolibc: explicitly handle ENOSYS from ptrace()  tools/nolibc: add byteorder conversions  tools/nolibc: add the _syscall() macro  tools/nolibc: move the call to __sysret() into syscall()  tools/nolibc: rename the internal macros used in syscall()  selftests/nolibc: only use libgcc when really necessary  selftests/nolibc: test the memory allocator  tools/nolibc: check for overflow in calloc() without divisions  tools/nolibc: add support for asprintf()  tools/nolibc: use __builtin_offsetof()  tools/nolibc: use makedev() in fstatat()  tools/nolibc: handle all major and minor numbers in makedev() and friends  tools/nolibc: make dev_t 64 bits wide  tools/nolibc: move the logic of makedev() and friends into functions  selftests/nolibc: add a test for stat().st_rdev  selftests/nolibc: add some tests for makedev() and friends  ...

            List of files:
            /linux/tools/include/nolibc/sys/wait.h</description>
        <pubDate>Wed, 15 Apr 2026 02:13:09 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>6285f0881ec68034399d13552f7243e69e6e37bf - tools/nolibc: rename sys_foo() functions to _sys_foo()</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/include/nolibc/sys/wait.h#6285f0881ec68034399d13552f7243e69e6e37bf</link>
        <description>tools/nolibc: rename sys_foo() functions to _sys_foo()The sys_foo() naming scheme used by the syscall wrappers may collidewith application symbols. Especially as &apos;sys_&apos; is an obvious namingscheme an application may choose for its own custom systemcall wrappers.Avoid these conflicts by using an leading underscore which moves thenames into the implementation&apos;s namespace. This naming scheme was chosenover a &apos;__nolibc_&apos; prefix, as these functions are not an implementationdetail but a documented interface meant to be used by applications.While this may break some existing users, adapting them should bestraightforward. Given that nolibc is most-likely vendored, nounexpected breakage should happen. No in-tree users are affected.These conflicts happen when compiling some of the kernel selftestswith nolibc.Signed-off-by: Thomas Wei&#223;schuh &lt;linux@weissschuh.net&gt;Acked-by: Willy Tarreau &lt;w@1wt.eu&gt;Link: https://patch.msgid.link/20260319-nolibc-namespacing-v1-1-33c22eaddb5e@weissschuh.net

            List of files:
            /linux/tools/include/nolibc/sys/wait.h</description>
        <pubDate>Thu, 19 Mar 2026 17:20:17 +0100</pubDate>
        <dc:creator>Thomas Wei&#223;schuh &lt;linux@weissschuh.net&gt;</dc:creator>
    </item>
<item>
        <title>55f1d6a9d6780e779e882a4d2d1b3db311835798 - tools/nolibc: rename my_syscallX() to __nolibc_syscallX()</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/include/nolibc/sys/wait.h#55f1d6a9d6780e779e882a4d2d1b3db311835798</link>
        <description>tools/nolibc: rename my_syscallX() to __nolibc_syscallX()The naming convention of the my_syscallX() macros is a bit unfortunate.They may conflict with application code and the name is very generic.Switch to __nolibc_syscallX(). The leading underscores place the symbolsin the implementation-defined namespace, avoiding conflicting names.It is also clearer that these are non-standard extensions from nolibc.Signed-off-by: Thomas Wei&#223;schuh &lt;linux@weissschuh.net&gt;Acked-by: Willy Tarreau &lt;w@1wt.eu&gt;Link: https://patch.msgid.link/20260223-nolibc-namespacing-v1-1-52574ffebb2c@weissschuh.net

            List of files:
            /linux/tools/include/nolibc/sys/wait.h</description>
        <pubDate>Mon, 23 Feb 2026 22:40:14 +0100</pubDate>
        <dc:creator>Thomas Wei&#223;schuh &lt;linux@weissschuh.net&gt;</dc:creator>
    </item>
<item>
        <title>cc4adab164b772a34b3340d644b7c4728498581e - Merge tag &apos;v6.19-rc1&apos; into msm-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/include/nolibc/sys/wait.h#cc4adab164b772a34b3340d644b7c4728498581e</link>
        <description>Merge tag &apos;v6.19-rc1&apos; into msm-nextMerge Linux 6.19-rc1 in order to catch up with other changes (e.g. UBWCconfig database defining UBWC_6).Signed-off-by: Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;

            List of files:
            /linux/tools/include/nolibc/sys/wait.h</description>
        <pubDate>Tue, 20 Jan 2026 23:06:55 +0100</pubDate>
        <dc:creator>Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>5add3c3c280a35f7e258e9cef7607db5a2e56fdc - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/include/nolibc/sys/wait.h#5add3c3c280a35f7e258e9cef7607db5a2e56fdc</link>
        <description>Merge drm/drm-next into drm-xe-nextBackmerging to bring in 6.19-rc1. An important upstream bugfix andto help unblock PTL CI.Signed-off-by: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;

            List of files:
            /linux/tools/include/nolibc/sys/wait.h</description>
        <pubDate>Fri, 19 Dec 2025 11:51:22 +0100</pubDate>
        <dc:creator>Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>b8304863a3990d0f18c38e5b94191830a63ee1af - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/include/nolibc/sys/wait.h#b8304863a3990d0f18c38e5b94191830a63ee1af</link>
        <description>Merge drm/drm-next into drm-intel-nextSync-up some display code needed for Async flips refactor.Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/tools/include/nolibc/sys/wait.h</description>
        <pubDate>Mon, 15 Dec 2025 14:24:02 +0100</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>7f790dd21a931c61167f7bdc327aecf2cebad327 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/include/nolibc/sys/wait.h#7f790dd21a931c61167f7bdc327aecf2cebad327</link>
        <description>Merge drm/drm-next into drm-misc-nextLet&apos;s kickstart the v6.20 (7.0?) release cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/tools/include/nolibc/sys/wait.h</description>
        <pubDate>Mon, 15 Dec 2025 09:27:39 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>a4a508df2aa34f8650afde54ea804321c618f45f - Merge tag &apos;v6.18&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/include/nolibc/sys/wait.h#a4a508df2aa34f8650afde54ea804321c618f45f</link>
        <description>Merge tag &apos;v6.18&apos; into nextSync up with the mainline to bring in the latest APIs.

            List of files:
            /linux/tools/include/nolibc/sys/wait.h</description>
        <pubDate>Sat, 13 Dec 2025 10:18:20 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>24f171c7e145f43b9f187578e89b0982ce87e54c - Merge tag &apos;asoc-fix-v6.19-rc1&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/include/nolibc/sys/wait.h#24f171c7e145f43b9f187578e89b0982ce87e54c</link>
        <description>Merge tag &apos;asoc-fix-v6.19-rc1&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusASoC: Fixes for v6.19We&apos;ve been quite busy with fixes since the merge window, though not inany particularly exciting ways - the standout thing is the fix for _SXcontrols which were broken by a change to how we do clamping, otherwiseit&apos;s all fairly run of the mill fixes and quirks.

            List of files:
            /linux/tools/include/nolibc/sys/wait.h</description>
        <pubDate>Sun, 21 Dec 2025 11:11:11 +0100</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>84318277d6334c6981ab326d4acc87c6a6ddc9b8 - Merge remote-tracking branch &apos;drm/drm-fixes&apos; into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/include/nolibc/sys/wait.h#84318277d6334c6981ab326d4acc87c6a6ddc9b8</link>
        <description>Merge remote-tracking branch &apos;drm/drm-fixes&apos; into drm-misc-fixesPull in rc1 to include all changes since the merge window closed,and grab all fixes and changes from drm/drm-next.Signed-off-by: Maarten Lankhorst &lt;dev@lankhorst.se&gt;

            List of files:
            /linux/tools/include/nolibc/sys/wait.h</description>
        <pubDate>Mon, 15 Dec 2025 12:53:27 +0100</pubDate>
        <dc:creator>Maarten Lankhorst &lt;dev@lankhorst.se&gt;</dc:creator>
    </item>
<item>
        <title>cb9f145f638d7afa633632a9290d6ad06caeb8ee - Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next-robclark</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/include/nolibc/sys/wait.h#cb9f145f638d7afa633632a9290d6ad06caeb8ee</link>
        <description>Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next-robclarkBack-merge drm-next to get caught up.Signed-off-by: Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;

            List of files:
            /linux/tools/include/nolibc/sys/wait.h</description>
        <pubDate>Sat, 01 Nov 2025 13:47:30 +0100</pubDate>
        <dc:creator>Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>82ee50252dc891e3f3b32d923bb4f656d300b772 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/include/nolibc/sys/wait.h#82ee50252dc891e3f3b32d923bb4f656d300b772</link>
        <description>Merge drm/drm-next into drm-xe-nextBackmerging to bring in 6.18-rc1.Signed-off-by: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;

            List of files:
            /linux/tools/include/nolibc/sys/wait.h</description>
        <pubDate>Tue, 14 Oct 2025 11:31:49 +0200</pubDate>
        <dc:creator>Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>2acee98fcc61052d63fab4539fcb6ee677555645 - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/include/nolibc/sys/wait.h#2acee98fcc61052d63fab4539fcb6ee677555645</link>
        <description>Merge drm/drm-next into drm-intel-nextSync to v6.18-rc1.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/tools/include/nolibc/sys/wait.h</description>
        <pubDate>Tue, 14 Oct 2025 09:37:11 +0200</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>9b966ae42235a88eaea714be09ff3d698535bdfe - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/include/nolibc/sys/wait.h#9b966ae42235a88eaea714be09ff3d698535bdfe</link>
        <description>Merge drm/drm-next into drm-misc-nextUpdating drm-misc-next to the state of v6.18-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/tools/include/nolibc/sys/wait.h</description>
        <pubDate>Mon, 13 Oct 2025 09:19:19 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>f088104d837a991c65e51fa30bb4196169b3244d - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/include/nolibc/sys/wait.h#f088104d837a991c65e51fa30bb4196169b3244d</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextBackmerge in order to get the commit:  048832a3f400 (&quot;drm/i915: Refactor shmem_pwrite() to use kiocb and write_iter&quot;)To drm-intel-gt-next as there are followup fixes to be applied.Signed-off-by: Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;

            List of files:
            /linux/tools/include/nolibc/sys/wait.h</description>
        <pubDate>Tue, 16 Sep 2025 12:53:20 +0200</pubDate>
        <dc:creator>Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>f2310b6271dc54278337987ec8140175e8df16f4 - Merge tag &apos;nolibc-20251130-for-6.19-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/nolibc/linux-nolibc</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/include/nolibc/sys/wait.h#f2310b6271dc54278337987ec8140175e8df16f4</link>
        <description>Merge tag &apos;nolibc-20251130-for-6.19-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/nolibc/linux-nolibcPull nolibc updates from Thomas Wei&#223;schuh: - Preparations to the use of nolibc in UML:     - Cleanup of sparse warnings     - Library mode without _start()     - More consistency when disabling errno - Unconditional installation of all architecture support files - Always 64-bit wide ino_t and off_t - Various cleanups and bug fixes* tag &apos;nolibc-20251130-for-6.19-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/nolibc/linux-nolibc: (25 commits)  selftests/nolibc: error out on linker warnings  selftests/nolibc: use lld to link loongarch binaries  tools/nolibc: remove more __nolibc_enosys() fallbacks  tools/nolibc: remove now superfluous overflow check in llseek  tools/nolibc: use 64-bit off_t  tools/nolibc: prefer the llseek syscall  tools/nolibc: handle 64-bit off_t for llseek  tools/nolibc: use 64-bit ino_t  tools/nolibc: avoid using plain integer as NULL pointer  tools/nolibc: add support for fchdir()  tools/nolibc: clean up outdated comments in generic arch.h  tools/nolibc: make the &quot;headers&quot; target install all supported archs  tools/nolibc: add the more portable inttypes.h  tools/nolibc: provide the portable sys/select.h  tools/nolibc: add missing memchr() to string.h  tools/nolibc: fix misleading help message regarding installation path  tools/nolibc: add uio.h with readv and writev  tools/nolibc: add option to disable runtime  tools/nolibc: use __fallthrough__ rather than fallthrough  tools/nolibc: implement %m if errno is not defined  ...

            List of files:
            /linux/tools/include/nolibc/sys/wait.h</description>
        <pubDate>Wed, 03 Dec 2025 18:23:25 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>812f223fe9be03dc22abb85240b6f075135d2386 - tools/nolibc: handle NULL wstatus argument to waitpid()</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/include/nolibc/sys/wait.h#812f223fe9be03dc22abb85240b6f075135d2386</link>
        <description>tools/nolibc: handle NULL wstatus argument to waitpid()wstatus is allowed to be NULL. Avoid a segmentation fault in this case.Fixes: 0c89abf5ab3f (&quot;tools/nolibc: implement waitpid() in terms of waitid()&quot;)Signed-off-by: Thomas Wei&#223;schuh &lt;thomas.weissschuh@linutronix.de&gt;Acked-by: Willy Tarreau &lt;w@1wt.eu&gt;Signed-off-by: Thomas Wei&#223;schuh &lt;linux@weissschuh.net&gt;

            List of files:
            /linux/tools/include/nolibc/sys/wait.h</description>
        <pubDate>Fri, 26 Sep 2025 16:26:58 +0200</pubDate>
        <dc:creator>Thomas Wei&#223;schuh &lt;thomas.weissschuh@linutronix.de&gt;</dc:creator>
    </item>
</channel>
</rss>
