We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
PROT_READ
PROT_WRITE
1 parent d391611 commit edf2ec3Copy full SHA for edf2ec3
libc-test/semver/trusty.txt
@@ -1,6 +1,8 @@
1
AT_PAGESZ
2
CLOCK_REALTIME
3
MAP_FAILED
4
+PROT_READ
5
+PROT_WRITE
6
STDERR_FILENO
7
STDOUT_FILENO
8
calloc
src/trusty.rs
@@ -59,6 +59,9 @@ s! {
59
}
60
61
62
+pub const PROT_READ: i32 = 1;
63
+pub const PROT_WRITE: i32 = 2;
64
+
65
pub const CLOCK_REALTIME: clockid_t = 0;
66
67
pub const STDOUT_FILENO: ::c_int = 1;
0 commit comments