Skip to content
Snippets Groups Projects
Commit a75fef0b authored by Victor Polevoy's avatar Victor Polevoy Committed by Victor Polevoy
Browse files

Disable pthread_setschedprio for android

parent 192a245a
No related branches found
No related tags found
No related merge requests found
......@@ -962,6 +962,7 @@ extern {
pshared: ::c_int) -> ::c_int;
pub fn pthread_condattr_getpshared(attr: *const pthread_condattr_t,
pshared: *mut ::c_int) -> ::c_int;
#[cfg(not(target_os = "android"))]
pub fn pthread_setschedprio(native: ::pthread_t,
priority: ::c_int) -> ::c_int;
pub fn pthread_getschedparam(native: ::pthread_t,
......
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