<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in unix</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>c04c92ed - Replace handwritten `Debug` impls with derives</title>
        <link>http://172.16.0.5:8080/history/rust-libc-0.2.174/src/unix/#c04c92ed</link>
        <description>Replace handwritten `Debug` impls with derives`s_no_extra_traits!` doesn&apos;t derive `Debug` so there are a lot ofhandwritten implementations. However, since we have a derive-likesolution for unions now (printing them like an opaque struct), therereally isn&apos;t any reason these can&apos;t all be derived.Add `derive(Debug)` to `s_no_extra_traits`, still gated behind `feature= &quot;extra_traits&quot;`, which allows getting rid of manual implementations.(backport &lt;https://github.com/rust-lang/libc/pull/4471&gt;)(cherry picked from commit 65c39bf1b0c7b904cf512280860120307d17703b)

            List of files:
            /rust-libc-0.2.174/src/unix/linux_like/linux/musl/b32/arm/mod.rs/rust-libc-0.2.174/src/unix/linux_like/linux/musl/b32/x86/mod.rs/rust-libc-0.2.174/src/unix/linux_like/linux/musl/b64/s390x.rs/rust-libc-0.2.174/src/unix/linux_like/linux/musl/b64/x86_64/mod.rs/rust-libc-0.2.174/src/unix/linux_like/mod.rs/rust-libc-0.2.174/src/unix/solarish/solaris.rs</description>
        <pubDate>Mon, 02 Jun 2025 04:00:00 +0000</pubDate>
        <dc:creator>Trevor Gross &lt;tmgross@umich.edu&gt;</dc:creator>
    </item>
<item>
        <title>790180ba - Remove unessecary semicolons from definitions of `CMSG_NXTHDR`.</title>
        <link>http://172.16.0.5:8080/history/rust-libc-0.2.174/src/unix/#790180ba</link>
        <description>Remove unessecary semicolons from definitions of `CMSG_NXTHDR`.(backport &lt;https://github.com/rust-lang/libc/pull/4492&gt;)(cherry picked from commit a2cf7c82ed85530e6262b0bc4d6f14bcda91777f)

            List of files:
            /rust-libc-0.2.174/src/unix/solarish/mod.rs</description>
        <pubDate>Mon, 16 Jun 2025 02:00:00 +0000</pubDate>
        <dc:creator>Collin Funk &lt;collin.funk1@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>51340584 - Allow new `unpredictable_function_pointer_comparisons` lints</title>
        <link>http://172.16.0.5:8080/history/rust-libc-0.2.174/src/unix/#51340584</link>
        <description>Allow new `unpredictable_function_pointer_comparisons` lintsThese appeared in a recent nightly from our `PartialEq` derives. Add`allow`s where needed to suppress them, since removing the derive wouldbe breaking.(backport &lt;https://github.com/rust-lang/libc/pull/4489&gt;)[ applied to PSP as well - Trevor ](cherry picked from commit e6378105c41a6bf525bd6a746db11e0c52ce172e)

            List of files:
            /rust-libc-0.2.174/src/unix/linux_like/linux/gnu/b32/riscv32/mod.rs/rust-libc-0.2.174/src/unix/linux_like/linux/gnu/b32/sparc/mod.rs/rust-libc-0.2.174/src/unix/linux_like/linux/gnu/b32/x86/mod.rs/rust-libc-0.2.174/src/unix/linux_like/linux/gnu/b64/aarch64/mod.rs/rust-libc-0.2.174/src/unix/linux_like/linux/gnu/b64/loongarch64/mod.rs/rust-libc-0.2.174/src/unix/linux_like/linux/gnu/b64/mips64/mod.rs/rust-libc-0.2.174/src/unix/linux_like/linux/gnu/b64/powerpc64/mod.rs/rust-libc-0.2.174/src/unix/linux_like/linux/gnu/b64/riscv64/mod.rs/rust-libc-0.2.174/src/unix/linux_like/linux/gnu/b64/sparc64/mod.rs/rust-libc-0.2.174/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs/rust-libc-0.2.174/src/unix/linux_like/linux/musl/mod.rs/rust-libc-0.2.174/src/unix/linux_like/linux/uclibc/x86_64/mod.rs/rust-libc-0.2.174/src/unix/nto/mod.rs/rust-libc-0.2.174/src/unix/redox/mod.rs</description>
        <pubDate>Sun, 15 Jun 2025 22:00:00 +0000</pubDate>
        <dc:creator>Trevor Gross &lt;tmgross@umich.edu&gt;</dc:creator>
    </item>
<item>
        <title>66b58759 - chore: minor cleanup `mode_t` usage</title>
        <link>http://172.16.0.5:8080/history/rust-libc-0.2.174/src/unix/#66b58759</link>
        <description>chore: minor cleanup `mode_t` usage`crate::mode_t` is almost never needed because it is part of prelude.  Moreover, in many cases `mode_t` was already used without the prefix - thus confusing if they are different or not. Keeping it the same helps readability.(backport &lt;https://github.com/rust-lang/libc/pull/4405&gt;)[ Resolve conflict around vxworks S_* constants - Trevor ](cherry picked from commit 1984cc22406f45cae7d6c6e2a1d1bc3faa6dc3e8)

            List of files:
            /rust-libc-0.2.174/src/unix/newlib/mod.rs</description>
        <pubDate>Mon, 14 Apr 2025 02:00:00 +0000</pubDate>
        <dc:creator>Yuri Astrakhan &lt;YuriAstrakhan@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>9810e4b6 - hurd: Fix build from missing `fpos_t`</title>
        <link>http://172.16.0.5:8080/history/rust-libc-0.2.174/src/unix/#9810e4b6</link>
        <description>hurd: Fix build from missing `fpos_t`In 872642ad (&quot;gnu: Add proper structs for fpos_t and fpos64_t&quot;),`fpos_t` was changed from an opaque struct to one with a definition onLinux GNU, with the Unix fallback configured as for targets without aGNU `target_env`. However, GNU hurd matches `target_env = &quot;gnu&quot;`, butdoesn&apos;t have a `fpos` implementation.Fix the build by adjusting the fallback `cfg` to be more specific.Eventually we probably want the same definition on Hurd as on Linux.(backport &lt;https://github.com/rust-lang/libc/pull/4472&gt;)(cherry picked from commit 72f49c99656e70eb70e20b444f3be85f3302f306)

            List of files:
            /rust-libc-0.2.174/src/unix/mod.rs</description>
        <pubDate>Mon, 02 Jun 2025 05:00:00 +0000</pubDate>
        <dc:creator>Trevor Gross &lt;tmgross@umich.edu&gt;</dc:creator>
    </item>
<item>
        <title>1a418edf - lints: Remove `allow(dead_code)`</title>
        <link>http://172.16.0.5:8080/history/rust-libc-0.2.174/src/unix/#1a418edf</link>
        <description>lints: Remove `allow(dead_code)`As discussed in [1], some changes to dead code warnings caused a lot ofcode to be inaccurately reported as dead in `libc`. The change wasreverted and improved since then, so we no longer need to skip thischeck.Includes some changes to make things pass with the lint.[1]: https://github.com/rust-lang/libc/issues/3740(backport &lt;https://github.com/rust-lang/libc/pull/4473&gt;)(cherry picked from commit 77a21a816490ce7766dd653725c7e99743e4e315)

            List of files:
            /rust-libc-0.2.174/src/unix/linux_like/linux/musl/b64/loongarch64/mod.rs</description>
        <pubDate>Mon, 02 Jun 2025 05:00:00 +0000</pubDate>
        <dc:creator>Trevor Gross &lt;tmgross@umich.edu&gt;</dc:creator>
    </item>
<item>
        <title>b2823f33 - fix some lints that were detected by the new style checker</title>
        <link>http://172.16.0.5:8080/history/rust-libc-0.2.174/src/unix/#b2823f33</link>
        <description>fix some lints that were detected by the new style checker(backport &lt;https://github.com/rust-lang/libc/pull/4220&gt;)(cherry picked from commit 94c2b1424af9b69e7dd15b4f3de0f5af3427433d)

            List of files:
            /rust-libc-0.2.174/src/unix/linux_like/linux/uclibc/x86_64/l4re.rs</description>
        <pubDate>Sat, 11 Jan 2025 03:00:00 +0000</pubDate>
        <dc:creator>Ryan Mehri &lt;ryan.mehri1@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>53a99ed9 - musl: struct ipc_perm: rename `__ipc_perm_key` to `__key`</title>
        <link>http://172.16.0.5:8080/history/rust-libc-0.2.174/src/unix/#53a99ed9</link>
        <description>musl: struct ipc_perm: rename `__ipc_perm_key` to `__key`This isn&apos;t strictly related to musl 1.2.3, however now presents a goodtime to change it, before the 1.0 release.(backport &lt;https://github.com/rust-lang/libc/pull/4443&gt;)(cherry picked from commit 3f81aadb0f1d1381c78f9b49da5267b3c466b138)

            List of files:
            /rust-libc-0.2.174/src/unix/linux_like/linux/musl/b32/mips/mod.rs/rust-libc-0.2.174/src/unix/linux_like/linux/musl/b32/powerpc.rs/rust-libc-0.2.174/src/unix/linux_like/linux/musl/b64/mips64.rs/rust-libc-0.2.174/src/unix/linux_like/linux/musl/b64/powerpc64.rs/rust-libc-0.2.174/src/unix/linux_like/linux/musl/b64/wasm32/mod.rs</description>
        <pubDate>Sat, 03 May 2025 12:00:00 +0000</pubDate>
        <dc:creator>Reagan Bohan &lt;xbjfk.github@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>b553d1f7 - musl: Fix O_LARGEFILE constant value.</title>
        <link>http://172.16.0.5:8080/history/rust-libc-0.2.174/src/unix/#b553d1f7</link>
        <description>musl: Fix O_LARGEFILE constant value.This was accidentally set to 0 in upstream, but fixed in commit b8b729b.If running with prior versions without that commit, this commiteffectively backports it.(backport &lt;https://github.com/rust-lang/libc/pull/4443&gt;)(cherry picked from commit 686aa7a3a2ead357a732d018e4295c9a92312132)

            List of files:
            /rust-libc-0.2.174/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs</description>
        <pubDate>Sat, 03 May 2025 10:00:00 +0000</pubDate>
        <dc:creator>Reagan Bohan &lt;xbjfk.github@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>c271bffe - musl: enable `getrandom` on all musl platforms</title>
        <link>http://172.16.0.5:8080/history/rust-libc-0.2.174/src/unix/#c271bffe</link>
        <description>musl: enable `getrandom` on all musl platformsThe existing bindings were added in #1399 and limited to targets whererustc used musl version &gt;= 1.1.20 which was not all musl targets at thattime. Since https://github.com/rust-lang/rust/pull/107129 all musltargets use musl 1.2.3. Hence, move the binding to the module root so itis available for all musl targets.(backport &lt;https://github.com/rust-lang/libc/pull/4346&gt;)(cherry picked from commit 77d301184110ec08defe78b4ba08450072eb5fb5)

            List of files:
            /rust-libc-0.2.174/src/unix/linux_like/linux/musl/b64/mod.rs</description>
        <pubDate>Thu, 20 Mar 2025 15:00:00 +0000</pubDate>
        <dc:creator>Tamir Duberstein &lt;tamird@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>a066096e - musl: aarch64: update type of ipc_perm-&gt;__seq to match upstream</title>
        <link>http://172.16.0.5:8080/history/rust-libc-0.2.174/src/unix/#a066096e</link>
        <description>musl: aarch64: update type of ipc_perm-&gt;__seq to match upstreamThe architecture-specific definitions was removed in upstream commit319b2d0, changing the type to the generic definition of int.(backport &lt;https://github.com/rust-lang/libc/pull/4443&gt;)(cherry picked from commit 3f911737768f78469952fe2604b38f4bc52374e1)

            List of files:
            /rust-libc-0.2.174/src/unix/linux_like/linux/musl/b64/aarch64/mod.rs</description>
        <pubDate>Sat, 03 May 2025 13:00:00 +0000</pubDate>
        <dc:creator>Reagan Bohan &lt;xbjfk.github@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>f1e459f1 - Add MADV_SOFT_OFFLINE definition for RISC-V musl targets</title>
        <link>http://172.16.0.5:8080/history/rust-libc-0.2.174/src/unix/#f1e459f1</link>
        <description>Add MADV_SOFT_OFFLINE definition for RISC-V musl targets(backport &lt;https://github.com/rust-lang/libc/pull/4447&gt;)(cherry picked from commit 118a904c4e690327d2ca3a633822ac1171cae5fa)

            List of files:
            /rust-libc-0.2.174/src/unix/linux_like/linux/musl/b32/riscv32/mod.rs</description>
        <pubDate>Tue, 06 May 2025 08:00:00 +0000</pubDate>
        <dc:creator>Mattias Nissler &lt;mnissler@rivosinc.com&gt;</dc:creator>
    </item>
<item>
        <title>1e99d50b - make pidfd_info fields pub</title>
        <link>http://172.16.0.5:8080/history/rust-libc-0.2.174/src/unix/#1e99d50b</link>
        <description>make pidfd_info fields pubthe struct appers to be extensible, so also mark it as non_exhaustive(backport &lt;https://github.com/rust-lang/libc/pull/4487&gt;)(cherry picked from commit 4dc50ebfd4750a5b7459482aa2618387a0bdbb7f)

            List of files:
            /rust-libc-0.2.174/src/unix/linux_like/linux/mod.rs</description>
        <pubDate>Sat, 14 Jun 2025 13:00:00 +0000</pubDate>
        <dc:creator>The 8472 &lt;git@infinite-source.de&gt;</dc:creator>
    </item>
<item>
        <title>264a5399 - Add missing timespec.tv_nsec for gnux32</title>
        <link>http://172.16.0.5:8080/history/rust-libc-0.2.174/src/unix/#264a5399</link>
        <description>Add missing timespec.tv_nsec for gnux32The tv_nsec field was removed by mistake for gnux32 in bbaa0173daa4(&quot;gnu: Update struct timespec for GNU _TIME_BITS=64&quot;).Fixes #4495Link: https://github.com/bminor/glibc/blob/d1b27eeda3d92f33314e93537437cab11ddf4777/time/bits/types/struct_timespec.h#L11-L31[ add referenced commit summary and link to the message - Trevor ](backport &lt;https://github.com/rust-lang/libc/pull/4497&gt;)(cherry picked from commit e9bd0b43e0b6830072e5af3e7c6618ec62732363)

            List of files:
            /rust-libc-0.2.174/src/unix/linux_like/linux/gnu/mod.rs</description>
        <pubDate>Mon, 16 Jun 2025 15:00:00 +0000</pubDate>
        <dc:creator>Ola x Nilsson &lt;olani@axis.com&gt;</dc:creator>
    </item>
</channel>
</rss>
