We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e06d905 + aa14d5a commit 632c93cCopy full SHA for 632c93c
libc-test/semver/redox.txt
@@ -215,6 +215,8 @@ reallocarray
215
setpwent
216
setrlimit
217
setservent
218
+sigtimedwait
219
+sigwait
220
strcasecmp
221
strcasestr
222
strlcat
src/unix/redox/mod.rs
@@ -1080,6 +1080,12 @@ extern "C" {
1080
) -> ::c_int;
1081
pub fn pthread_cancel(thread: ::pthread_t) -> ::c_int;
1082
pub fn pthread_kill(thread: ::pthread_t, sig: ::c_int) -> ::c_int;
1083
+ pub fn sigtimedwait(
1084
+ set: *const sigset_t,
1085
+ sig: *mut siginfo_t,
1086
+ timeout: *const ::timespec,
1087
+ ) -> ::c_int;
1088
+ pub fn sigwait(set: *const sigset_t, sig: *mut ::c_int) -> ::c_int;
1089
1090
// stdlib.h
1091
pub fn reallocarray(ptr: *mut ::c_void, nmemb: ::size_t, size: ::size_t) -> *mut ::c_void;
0 commit comments