Skip to content
Snippets Groups Projects
Unverified Commit e51a79f3 authored by Artyom Pavlov's avatar Artyom Pavlov Committed by GitHub
Browse files

pthread_exit fix

parent c443f1a9
No related branches found
No related tags found
No related merge requests found
......@@ -1048,7 +1048,7 @@ extern "C" {
native: ::pthread_t,
value: *mut *mut ::c_void,
) -> ::c_int;
pub fn pthread_exit(value: *mut ::c_void);
pub fn pthread_exit(value: *mut ::c_void) -> !;
pub fn pthread_attr_init(attr: *mut ::pthread_attr_t) -> ::c_int;
pub fn pthread_attr_destroy(attr: *mut ::pthread_attr_t) -> ::c_int;
pub fn pthread_attr_setstacksize(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment