- Apr 13, 2020
-
-
Yuki Okushi authored
-
Yuki Okushi authored
-
Alexander Batischev authored
Headers I used: Oh, for reference, here are the headers I used while working on this: - musl: https://git.musl-libc.org/cgit/musl/tree/include/regex.h?id=8327ae0cb23b799bc55a45e0d4bd95f5a2b1cdf1 - glibc: https://sourceware.org/git/?p=glibc.git;a=blob;f=posix/regex.h;h=87cce7f5cb8cc3b678467329b479bd511e250e61;hb=HEAD - macOS: https://opensource.apple.com/source/Libc/Libc-997.90.3/include/regex.h.auto.html - FreeBSD: https://github.com/freebsd/freebsd/blob/8103b0ddb041617b7cd161528f0ff93ff32970a2/include/regex.h - NetBSD: https://github.com/NetBSD/src/blob/61c8f6fbb7e38b20e862d5cb3ed2203312963283/include/regex.h
-
- Apr 11, 2020
-
-
Yuki Okushi authored
-
- Apr 09, 2020
-
-
Guillume DIDIER authored
This adds the defines from include/uapi/asm-generic/hugetlb_encode.h and the corresponding defines in include/uapi/linux/mman.h to linux_like/linux/gnu/mod.rs and the equivalent for musl in linux_like/linux/musl/mod.rs Solves #1700 Removes two defines from musl/b32/hexagon.rs that are now provided two mudules "up"
-
- Apr 07, 2020
-
-
Yuki Okushi authored
-
- Apr 04, 2020
-
-
Daniel McCarney authored
The `fanotify` API[0] is a linux-specific API for notification and interception of filesystem events. In some ways it is similar to `inotify`, but with different advantages/tradeoffs. It is particularly well suited to full filesystem/mount monitoring (vs per directory) and for allowing/denying access to files (`inotify` lacks this capability). The `fanotify` API has been updated several times since it was enabled in Linux 2.6.37. Presently I've only included support for the original `fanotify` features, and the `FAN_MARK_FILESYSTEM` addition made in Linux 4.20. There are subsequent updates in 5.0 and 5.1 not covered in this initial commit. This commit adds the relevant constants and types from `uapi/linux/fanotify.h`[1] and two new functions (`fanotify_init`[2] and `fanotify_wrap`[3]) to `src/unix/linux_like/linux/mod.rs`. While I believe this API is also present on Android I have presently limited my attention to Linux. Although this commit focuses on Linux 4.20.x's `fanotify` API/constants I have skipped adding constants for `FAN_ALL_CLASS_BITS`, `FAN_ALL_INIT_FLAGS`, `FAN_ALL_MARK_FLAGS`, `FAN_ALL_EVENTS`, `FAN_ALL_PERM_EVENTS` and `FAN_ALL_OUTGOING_EVENTS` even though they are present in this kernel version's headers. These defines were deprecated[4] in later releases with instructions to not use them in new programs or extend them with new values. It would be a shame for new Rust programs to use deprecated #defines! [0]: http://man7.org/linux/man-pages/man7/fanotify.7.html [1]: https://github.com/torvalds/linux/blob/d54f4fba889b205e9cd8239182ca5d27d0ac3bc2/include/uapi/linux/fanotify.h [2]: http://man7.org/linux/man-pages/man2/fanotify_init.2.html [3]: http://man7.org/linux/man-pages/man2/fanotify_mark.2.html [4]: https://github.com/torvalds/linux/commit/23c9deeb3285d34fd243abb3d6b9f07db60c3cf4#diff-4c9ca62be6bf38cc08f7ea9daf16e379
-
- Apr 03, 2020
-
-
Patrick Mooney authored
-
- Mar 15, 2020
-
-
Yuki Okushi authored
-
- Mar 09, 2020
-
-
John Baublitz authored
-
- Mar 08, 2020
-
-
zonyitoo authored
-
- Mar 01, 2020
-
-
Daniel Fox Franke authored
-
Daniel Fox Franke authored
-
Daniel Fox Franke authored
-
Michal 'vorner' Vaner authored
Constants for the linux nfqueue netlink protocol (userspace firewall). Continuation of #1562 and #1571.
-
- Feb 29, 2020
-
-
Yuki Okushi authored
-
- Feb 28, 2020
-
-
Yuji Yamamoto authored
-
- Feb 25, 2020
-
-
Yuki Okushi authored
-
Yuki Okushi authored
-
Yuki Okushi authored
-
- Feb 24, 2020
-
-
BaoshanPang authored
-
- Feb 12, 2020
-
-
Vickenty Fesunov authored
This triggers a warning on a recent nightly, which in turn breaks CI due to `#![deny(warnings)]` in libc-test/build.rs
-
- Dec 16, 2019
-
-
Alex Crichton authored
This commit performs a number of updates for libc with the `wasm32-wasi` target: * Updates the `wasi-libc` repository commit used (previously known as `wasi-sysroot`) * Updates the container to Ubuntu 19.10 which has Clang 9 packaged which is all we need. * Avoids building `wasmtime` and instead downloads a precompiled binary. * Updates bindings in `src/wasi.rs` to match the current upstream state.
-
- Dec 03, 2019
-
-
Matthew McPherrin authored
Modelled after the cmsg tests, this wraps the C macro into a function, and then compares the results to the Rust implementation in libc.
-
- Dec 02, 2019
-
-
Matthew McPherrin authored
-
Matthew McPherrin authored
-
Matthew McPherrin authored
sock_extended_err is a struct returned as a control message when the sockopt IP_RECVERR is set, when recvmsg has the MSG_ERRQUEUE flag set. IP_RECVERR and MSG_ERRQUEUE are constants both already defined here.
-
Matthew McPherrin authored
This moves the linux/ headers after others This keeps the Android tests closer to the Linux ones. I think this is needed to get linux/errqueue.h to not cause compilation failures.
-
- Nov 25, 2019
-
-
Elichai Turkel authored
Co-Authored-By:
gnzlbg <gnzlbg@users.noreply.github.com>
-
- Nov 22, 2019
-
-
patrick felt authored
Signed-off-by:
patrick felt <patrick.felt@sling.com>
-
- Nov 21, 2019
-
-
Elichai Turkel authored
-
- Nov 19, 2019
-
-
oxalica authored
-
- Nov 07, 2019
-
-
Sébastien Marie authored
initial work from @landryb for OpenBSD, various fixes and NetBSD support from me. Fixes #1585
-
- Nov 05, 2019
-
-
Arthur Gautier authored
Signed-off-by:
Arthur Gautier <baloo@gandi.net>
-
Arthur Gautier authored
Signed-off-by:
Arthur Gautier <baloo@gandi.net>
-
- Nov 04, 2019
-
-
Arthur Gautier authored
-
Arthur Gautier authored
-
- Oct 28, 2019
-
-
Michal 'vorner' Vaner authored
First batch for #1562
-
- Oct 11, 2019
-
-
BaoshanPang authored
-
- Sep 21, 2019
-
-
gnzlbg authored
-