| Age | Commit message (Expand) | Author | Lines |
| 2022-06-04 | Auto merge of #97191 - wesleywiser:main_thread_name, r=ChrisDenton | bors | -0/+10 |
| 2022-06-04 | keep using poll as fast path and only use fcntl as fallback | The 8472 | -19/+64 |
| 2022-06-04 | Rollup merge of #97647 - m-ou-se:lazy-box-locks, r=Amanieu | Dylan DPC | -28/+62 |
| 2022-06-03 | Auto merge of #95833 - notriddle:notriddle/human-readable-signals, r=yaahc | bors | -6/+82 |
| 2022-06-03 | Lazily allocate+initialize locks. | Mara Bos | -14/+36 |
| 2022-06-03 | Use Drop instead of destroy() for locks. | Mara Bos | -14/+26 |
| 2022-06-02 | Fix MIPS-specific signal bug | Michael Howell | -1/+10 |
| 2022-06-01 | std: show signal number along with name | Michael Howell | -46/+50 |
| 2022-05-30 | Remove "sys isn't exported yet" phrase | est31 | -1/+0 |
| 2022-05-27 | Call the OS function to set the main thread's name on program init | Wesley Wiser | -0/+10 |
| 2022-05-25 | Disable unix::net::ancillary on BSD. | Mara Bos | -18/+2 |
| 2022-05-21 | Fix typo in futex RwLock::write_contended. | Mara Bos | -3/+2 |
| 2022-05-21 | Use GRND_INSECURE instead of /dev/urandom when possible | Jason A. Donenfeld | -0/+15 |
| 2022-05-11 | Use `fcntl(fd, F_GETFD)` to detect if standard streams are open | Tomasz Miąsko | -31/+6 |
| 2022-05-11 | to_timespec could be unused by some targets | Sébastien Marie | -0/+1 |
| 2022-05-11 | avoid using both Some() and ? on linux/android/freebsd code | Sébastien Marie | -1/+1 |
| 2022-05-11 | openbsd: convert futex timeout managment to Timespec usage | Sébastien Marie | -9/+7 |
| 2022-05-09 | Use Rust 2021 prelude in std itself. | Mara Bos | -13/+0 |
| 2022-05-06 | Share more unix SystemTime code | Josh Stone | -101/+57 |
| 2022-05-06 | Use statx's 64-bit times on 32-bit linux-gnu | Josh Stone | -38/+79 |
| 2022-05-06 | Use __clock_gettime64 on 32-bit linux-gnu | Josh Stone | -0/+27 |
| 2022-05-06 | unix: always use 64-bit Timespec | Josh Stone | -67/+65 |
| 2022-05-03 | Round timeouts up to infinite in futex_wait on DragonFlyBSD. | Mara Bos | -9/+8 |
| 2022-05-03 | Add #[cfg] in cfg_if for linux in unix/futex. | Mara Bos | -3/+5 |
| 2022-05-03 | Don't use futexes on netbsd. | Mara Bos | -43/+5 |
| 2022-04-29 | Disable pthread thread parker on futex platforms. | Mara Bos | -1/+5 |
| 2022-04-29 | Always return false in futex_wake on {Free,DragonFly}BSD. | Mara Bos | -16/+13 |
| 2022-04-29 | Use futex-based locks and thread parker on FreeBSD. | Mara Bos | -4/+59 |
| 2022-04-29 | Use futex-based locks and thread parker on DragonFlyBSD. | Mara Bos | -1/+43 |
| 2022-04-29 | Use futex-based locks and thread parker on NetBSD. | Mara Bos | -24/+52 |
| 2022-04-29 | Use futex-based locks and thread parker on OpenBSD. | Mara Bos | -1/+52 |
| 2022-04-28 | Auto merge of #96393 - joboet:pthread_parker, r=thomcc | bors | -2/+268 |
| 2022-04-28 | std: simplify UNIX parker timeouts | joboet | -59/+21 |
| 2022-04-25 | Remove references to git.io | Eric Huss | -1/+2 |
| 2022-04-25 | std: directly use pthread in UNIX parker implementation | joboet | -0/+304 |
| 2022-04-24 | Auto merge of #94609 - esp-rs:esp-idf-stat-type-fixes, r=Mark-Simulacrum | bors | -3/+18 |
| 2022-04-23 | std: `<ExitStatus as Display>::fmt` name the signal it died from | Michael Howell | -3/+66 |
| 2022-04-21 | Rollup merge of #96193 - djkoloski:fuchsia_current_exe, r=tmandry | Dylan DPC | -1/+21 |
| 2022-04-20 | Rollup merge of #96234 - goffrie:eloop, r=thomcc | Dylan DPC | -1/+2 |
| 2022-04-20 | Rollup merge of #96167 - CAD97:weak-dlsym-less-ptr-crime, r=thomcc | Dylan DPC | -17/+15 |
| 2022-04-20 | remove_dir_all_recursive: treat ELOOP the same as ENOTDIR | Geoffry Song | -1/+2 |
| 2022-04-19 | [fuchsia] Add implementation for `current_exe` | David Koloski | -1/+21 |
| 2022-04-19 | espidf: fix stat | Scott Mabin | -3/+18 |
| 2022-04-19 | Use futex locks on emscripten. | Mara Bos | -0/+1 |
| 2022-04-19 | Make std::sys::unix::futex consistent on emscripten. | Mara Bos | -22/+25 |
| 2022-04-18 | Auto merge of #96042 - m-ou-se:one-reentrant-mutex, r=Amanieu | bors | -146/+2 |
| 2022-04-17 | Replace sys/unix/weak AtomicUsize with AtomicPtr | CAD97 | -17/+15 |
| 2022-04-17 | Auto merge of #93530 - anonion0:pthread_sigmask_fix, r=JohnTitor | bors | -4/+5 |
| 2022-04-17 | move import to fix warning with emscripten target | Ralf Sager | -1/+2 |
| 2022-04-16 | Use a single ReentrantMutex implementation on all platforms. | Mara Bos | -146/+2 |