-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Comparing changes
Open a pull request
base repository: rust-lang/libc
base: 0.2.131
head repository: rust-lang/libc
compare: 0.2.132
- 9 commits
- 7 files changed
- 4 contributors
Commits on Aug 13, 2022
-
pthread_sigqueue is a gnu libc extension, however I have a use case for it, hence why I'm adding it.
Configuration menu - View commit details
-
Copy full SHA for f967994 - Browse repository at this point
Copy the full SHA f967994View commit details
Commits on Aug 14, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 654cc69 - Browse repository at this point
Copy the full SHA 654cc69View commit details -
Ignore FUTEX_LOCK_PI2 in tests
FUTEX_LOCK_PI2 was added in Linux 5.14, which the automated tests do not yet use.
Configuration menu - View commit details
-
Copy full SHA for a8f02e9 - Browse repository at this point
Copy the full SHA a8f02e9View commit details
Commits on Aug 15, 2022
-
Auto merge of #2874 - rtzoeller:FUTEX_LOCK_PI2, r=JohnTitor
Add FUTEX_LOCK_PI2 on Linux Tested using a modified version of the [linux-futex crate](https://github.com/m-ou-se/linux-futex/).
Configuration menu - View commit details
-
Copy full SHA for 26b8795 - Browse repository at this point
Copy the full SHA 26b8795View commit details -
Auto merge of #2873 - pirocks:master, r=JohnTitor
Add pthread_sigqueue. This resurrects #991. Should be a pretty straightforward addition of pthread_sigqueue.
Configuration menu - View commit details
-
Copy full SHA for 08c0f2c - Browse repository at this point
Copy the full SHA 08c0f2cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6844aff - Browse repository at this point
Copy the full SHA 6844affView commit details
Commits on Aug 16, 2022
-
Auto merge of #2875 - jam1garner:fix-mips-o-largefile, r=JohnTitor
Fix incorrect constant for O_LARGEFILE on mips64-linux-musl Changes `O_LARGEFILE` from `0` to `0x2000` Bash script used for ensuring constant is correct: ```sh #!/bin/bash echo " #include <fcntl.h> int largefile() { return O_LARGEFILE; } " | mips64-linux-musl-gcc -c -O2 musl_o_largefile.c -o temp.o mips64-linux-musl-objdump -d temp.o | grep -A2 largefile ``` Output: ```asm 0000000000000000 <largefile>: 0: 03e00008 jr ra 4: 24022000 li v0,8192 ; 0x2000 ``` Link to relevant portion of kernel source, shows that it should match mips32 musl (which currently has a value of 0x2000 as well). I believe the reason #2738 had this value incorrect was because it's 0 for glibc on mips64 (to specify it's the default, I believe).Configuration menu - View commit details
-
Copy full SHA for 1d38aa2 - Browse repository at this point
Copy the full SHA 1d38aa2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 58f4136 - Browse repository at this point
Copy the full SHA 58f4136View commit details -
Auto merge of #2877 - pirocks:master, r=Amanieu
Bump version to 0.2.132 I want to make changes to nix and other crates, but those changes depend on f967994 being released.
Configuration menu - View commit details
-
Copy full SHA for 2a1d103 - Browse repository at this point
Copy the full SHA 2a1d103View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 0.2.131...0.2.132