We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ddeff5b + c414761 commit 613b81fCopy full SHA for 613b81f
src/unix/nuttx/mod.rs
@@ -551,5 +551,7 @@ extern "C" {
551
pub fn futimens(fd: i32, times: *const timespec) -> i32;
552
pub fn pthread_condattr_setclock(attr: *mut pthread_condattr_t, clock_id: clockid_t) -> i32;
553
pub fn pthread_set_name_np(thread: pthread_t, name: *const c_char) -> i32;
554
+ pub fn pthread_setname_np(thread: pthread_t, name: *const c_char) -> i32;
555
+ pub fn pthread_getname_np(thread: pthread_t, name: *mut c_char, len: usize) -> i32;
556
pub fn getrandom(buf: *mut c_void, buflen: usize, flags: u32) -> isize;
557
}
0 commit comments