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.
2 parents 3c2bd77 + 4702102 commit ecd468eCopy full SHA for ecd468e
libc-test/build.rs
@@ -119,6 +119,9 @@ fn main() {
119
cfg.header("arpa/inet.h");
120
cfg.header("xlocale.h");
121
cfg.header("utmp.h");
122
+ if i686 || x86_64 {
123
+ cfg.header("sys/reg.h");
124
+ }
125
} else if !windows {
126
cfg.header("glob.h");
127
cfg.header("ifaddrs.h");
src/unix/notbsd/android/b32/mod.rs
@@ -141,7 +141,6 @@ pub const PTRACE_SETFPREGS: ::c_int = 15;
141
pub const PTRACE_GETREGS: ::c_int = 12;
142
pub const PTRACE_SETREGS: ::c_int = 13;
143
144
-pub const SYS_gettid: ::c_long = 224;
145
pub const PTHREAD_MUTEX_INITIALIZER: pthread_mutex_t = pthread_mutex_t {
146
value: 0,
147
};
0 commit comments