File tree Expand file tree Collapse file tree 7 files changed +10
-0
lines changed Expand file tree Collapse file tree 7 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -2984,6 +2984,7 @@ pthread_create
29842984pthread_detach
29852985pthread_exit
29862986pthread_getattr_np
2987+ pthread_getcpuclockid
29872988pthread_getschedparam
29882989pthread_getspecific
29892990pthread_join
Original file line number Diff line number Diff line change @@ -1354,6 +1354,7 @@ pthread_condattr_getclock
13541354pthread_condattr_getpshared
13551355pthread_condattr_setclock
13561356pthread_condattr_setpshared
1357+ pthread_getcpuclockid
13571358pthread_kill
13581359pthread_main_np
13591360pthread_mutex_timedlock
Original file line number Diff line number Diff line change @@ -1639,6 +1639,7 @@ pthread_condattr_getpshared
16391639pthread_condattr_setclock
16401640pthread_condattr_setpshared
16411641pthread_getaffinity_np
1642+ pthread_getcpuclockid
16421643pthread_getthreadid_np
16431644pthread_kill
16441645pthread_main_np
Original file line number Diff line number Diff line change @@ -2921,6 +2921,7 @@ pthread_condattr_setclock
29212921pthread_condattr_setpshared
29222922pthread_getaffinity_np
29232923pthread_getattr_np
2924+ pthread_getcpuclockid
29242925pthread_getschedparam
29252926pthread_kill
29262927pthread_mutex_timedlock
Original file line number Diff line number Diff line change @@ -1430,6 +1430,8 @@ extern "C" {
14301430 pub fn clock_settime ( clk_id : :: clockid_t , tp : * const :: timespec ) -> :: c_int ;
14311431 pub fn clock_getcpuclockid ( pid : :: pid_t , clk_id : * mut :: clockid_t ) -> :: c_int ;
14321432
1433+ pub fn pthread_getcpuclockid ( thread : :: pthread_t , clk_id : * mut :: clockid_t ) -> :: c_int ;
1434+
14331435 pub fn dirfd ( dirp : * mut :: DIR ) -> :: c_int ;
14341436 pub fn duplocale ( base : :: locale_t ) -> :: locale_t ;
14351437 pub fn endutxent ( ) ;
Original file line number Diff line number Diff line change @@ -2917,6 +2917,8 @@ extern "C" {
29172917 pub fn arc4random_buf ( __buf : * mut :: c_void , __n : :: size_t ) ;
29182918
29192919 pub fn reallocarray ( ptr : * mut :: c_void , nmemb : :: size_t , size : :: size_t ) -> * mut :: c_void ;
2920+
2921+ pub fn pthread_getcpuclockid ( thread : :: pthread_t , clk_id : * mut :: clockid_t ) -> :: c_int ;
29202922}
29212923
29222924cfg_if ! {
Original file line number Diff line number Diff line change @@ -3840,6 +3840,8 @@ extern "C" {
38403840 ) -> :: c_int ;
38413841
38423842 pub fn gethostid ( ) -> :: c_long ;
3843+
3844+ pub fn pthread_getcpuclockid ( thread : :: pthread_t , clk_id : * mut :: clockid_t ) -> :: c_int ;
38433845}
38443846
38453847cfg_if ! {
You can’t perform that action at this time.
0 commit comments