File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed
src/unix/bsd/freebsdlike/freebsd Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -1828,6 +1828,7 @@ fn test_freebsd(target: &str) {
18281828 "sys/stat.h" ,
18291829 "sys/statvfs.h" ,
18301830 "sys/sysctl.h" ,
1831+ "sys/thr.h" ,
18311832 "sys/time.h" ,
18321833 "sys/times.h" ,
18331834 "sys/timex.h" ,
Original file line number Diff line number Diff line change @@ -1752,6 +1752,9 @@ sysctl
17521752sysctlbyname
17531753sysctlnametomib
17541754telldir
1755+ thr_kill
1756+ thr_kill2
1757+ thr_self
17551758timer_create
17561759timer_delete
17571760timer_getoverrun
Original file line number Diff line number Diff line change @@ -1791,6 +1791,9 @@ extern "C" {
17911791
17921792 pub fn uuidgen ( store : * mut uuid , count : :: c_int ) -> :: c_int ;
17931793
1794+ pub fn thr_kill ( id : :: c_long , sig : :: c_int ) -> :: c_int ;
1795+ pub fn thr_kill2 ( pid : :: pid_t , id : :: c_long , sig : :: c_int ) -> :: c_int ;
1796+ pub fn thr_self ( tid : * mut :: c_long ) -> :: c_int ;
17941797 pub fn pthread_getthreadid_np ( ) -> :: c_int ;
17951798 pub fn pthread_getaffinity_np (
17961799 td : :: pthread_t ,
You can’t perform that action at this time.
0 commit comments