File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3732,7 +3732,7 @@ extern "C" {
3732
3732
native : :: pthread_t ,
3733
3733
value : * mut * mut :: c_void ,
3734
3734
) -> :: c_int ;
3735
- pub fn pthread_exit ( value : * mut :: c_void ) ;
3735
+ pub fn pthread_exit ( value : * mut :: c_void ) -> ! ;
3736
3736
pub fn pthread_attr_init ( attr : * mut :: pthread_attr_t ) -> :: c_int ;
3737
3737
pub fn pthread_attr_destroy ( attr : * mut :: pthread_attr_t ) -> :: c_int ;
3738
3738
pub fn pthread_attr_setstacksize (
Original file line number Diff line number Diff line change @@ -1048,7 +1048,7 @@ extern "C" {
1048
1048
native : :: pthread_t ,
1049
1049
value : * mut * mut :: c_void ,
1050
1050
) -> :: c_int ;
1051
- pub fn pthread_exit ( value : * mut :: c_void ) ;
1051
+ pub fn pthread_exit ( value : * mut :: c_void ) -> ! ;
1052
1052
pub fn pthread_attr_init ( attr : * mut :: pthread_attr_t ) -> :: c_int ;
1053
1053
pub fn pthread_attr_destroy ( attr : * mut :: pthread_attr_t ) -> :: c_int ;
1054
1054
pub fn pthread_attr_setstacksize (
Original file line number Diff line number Diff line change @@ -1318,7 +1318,7 @@ extern "C" {
1318
1318
pub fn flock ( fd : :: c_int , operation : :: c_int ) -> :: c_int ;
1319
1319
1320
1320
pub fn gettimeofday ( tp : * mut :: timeval , tz : * mut :: c_void ) -> :: c_int ;
1321
- pub fn pthread_exit ( value : * mut :: c_void ) ;
1321
+ pub fn pthread_exit ( value : * mut :: c_void ) -> ! ;
1322
1322
pub fn pthread_attr_setdetachstate (
1323
1323
attr : * mut :: pthread_attr_t ,
1324
1324
state : :: c_int ,
You can’t perform that action at this time.
0 commit comments