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
215215setpwent
216216setrlimit
217217setservent
218+ sigtimedwait
219+ sigwait
218220strcasecmp
219221strcasestr
220222strlcat
Original file line number Diff line number Diff line change @@ -1080,6 +1080,12 @@ extern "C" {
10801080 ) -> :: c_int ;
10811081 pub fn pthread_cancel ( thread : :: pthread_t ) -> :: c_int ;
10821082 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 ;
10831089
10841090 // stdlib.h
10851091 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