We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9961621 commit 81dadbcCopy full SHA for 81dadbc
lib/std/c.zig
@@ -262,6 +262,7 @@ pub extern "c" fn pthread_key_create(key: *c.pthread_key_t, destructor: ?PThread
262
pub extern "c" fn pthread_key_delete(key: c.pthread_key_t) c.E;
263
pub extern "c" fn pthread_getspecific(key: c.pthread_key_t) ?*anyopaque;
264
pub extern "c" fn pthread_setspecific(key: c.pthread_key_t, value: ?*anyopaque) c_int;
265
+pub extern "c" fn pthread_sigmask(how: c_int, set: *const c.sigset_t, oldset: *c.sigset_t) c_int;
266
pub extern "c" fn sem_init(sem: *c.sem_t, pshared: c_int, value: c_uint) c_int;
267
pub extern "c" fn sem_destroy(sem: *c.sem_t) c_int;
268
pub extern "c" fn sem_open(name: [*:0]const u8, flag: c_int, mode: c.mode_t, value: c_uint) *c.sem_t;
0 commit comments