File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -215,6 +215,8 @@ reallocarray
215
215
setpwent
216
216
setrlimit
217
217
setservent
218
+ sigtimedwait
219
+ sigwait
218
220
strcasecmp
219
221
strcasestr
220
222
strlcat
Original file line number Diff line number Diff line change @@ -1080,6 +1080,12 @@ extern "C" {
1080
1080
) -> :: c_int ;
1081
1081
pub fn pthread_cancel ( thread : :: pthread_t ) -> :: c_int ;
1082
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 ;
1083
1089
1084
1090
// stdlib.h
1085
1091
pub fn reallocarray ( ptr : * mut :: c_void , nmemb : :: size_t , size : :: size_t ) -> * mut :: c_void ;
You can’t perform that action at this time.
0 commit comments