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
2984
2984
pthread_detach
2985
2985
pthread_exit
2986
2986
pthread_getattr_np
2987
+ pthread_getcpuclockid
2987
2988
pthread_getschedparam
2988
2989
pthread_getspecific
2989
2990
pthread_join
Original file line number Diff line number Diff line change @@ -1354,6 +1354,7 @@ pthread_condattr_getclock
1354
1354
pthread_condattr_getpshared
1355
1355
pthread_condattr_setclock
1356
1356
pthread_condattr_setpshared
1357
+ pthread_getcpuclockid
1357
1358
pthread_kill
1358
1359
pthread_main_np
1359
1360
pthread_mutex_timedlock
Original file line number Diff line number Diff line change @@ -1639,6 +1639,7 @@ pthread_condattr_getpshared
1639
1639
pthread_condattr_setclock
1640
1640
pthread_condattr_setpshared
1641
1641
pthread_getaffinity_np
1642
+ pthread_getcpuclockid
1642
1643
pthread_getthreadid_np
1643
1644
pthread_kill
1644
1645
pthread_main_np
Original file line number Diff line number Diff line change @@ -2921,6 +2921,7 @@ pthread_condattr_setclock
2921
2921
pthread_condattr_setpshared
2922
2922
pthread_getaffinity_np
2923
2923
pthread_getattr_np
2924
+ pthread_getcpuclockid
2924
2925
pthread_getschedparam
2925
2926
pthread_kill
2926
2927
pthread_mutex_timedlock
Original file line number Diff line number Diff line change @@ -1430,6 +1430,8 @@ extern "C" {
1430
1430
pub fn clock_settime ( clk_id : :: clockid_t , tp : * const :: timespec ) -> :: c_int ;
1431
1431
pub fn clock_getcpuclockid ( pid : :: pid_t , clk_id : * mut :: clockid_t ) -> :: c_int ;
1432
1432
1433
+ pub fn pthread_getcpuclockid ( thread : :: pthread_t , clk_id : * mut :: clockid_t ) -> :: c_int ;
1434
+
1433
1435
pub fn dirfd ( dirp : * mut :: DIR ) -> :: c_int ;
1434
1436
pub fn duplocale ( base : :: locale_t ) -> :: locale_t ;
1435
1437
pub fn endutxent ( ) ;
Original file line number Diff line number Diff line change @@ -2917,6 +2917,8 @@ extern "C" {
2917
2917
pub fn arc4random_buf ( __buf : * mut :: c_void , __n : :: size_t ) ;
2918
2918
2919
2919
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 ;
2920
2922
}
2921
2923
2922
2924
cfg_if ! {
Original file line number Diff line number Diff line change @@ -3840,6 +3840,8 @@ extern "C" {
3840
3840
) -> :: c_int ;
3841
3841
3842
3842
pub fn gethostid ( ) -> :: c_long ;
3843
+
3844
+ pub fn pthread_getcpuclockid ( thread : :: pthread_t , clk_id : * mut :: clockid_t ) -> :: c_int ;
3843
3845
}
3844
3846
3845
3847
cfg_if ! {
You can’t perform that action at this time.
0 commit comments