Skip to content
Snippets Groups Projects
Commit b0b33707 authored by Tomasz Miąsko's avatar Tomasz Miąsko
Browse files

[unix] Add pthread_kill.

parent 213a0f9c
No related branches found
No related tags found
No related merge requests found
......@@ -488,6 +488,7 @@ extern {
link_name = "pthread_sigmask$UNIX2003")]
pub fn pthread_sigmask(how: ::c_int, set: *const sigset_t,
oldset: *mut sigset_t) -> ::c_int;
pub fn pthread_kill(thread: ::pthread_t, sig: ::c_int) -> ::c_int;
// #[cfg_attr(target_os = "linux", link_name = "__xpg_strerror_r")]
pub fn strerror_r(errnum: ::c_int, buf: *mut c_char,
......
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