Skip to content

Commit 9579c1d

Browse files
committed
Add DragonFly umtx_{sleep, wakeup}.
1 parent 02f4f6c commit 9579c1d

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

libc-test/semver/dragonfly.txt

+2
Original file line numberDiff line numberDiff line change
@@ -1497,6 +1497,8 @@ timex
14971497
truncate
14981498
ttyname_r
14991499
ucontext_t
1500+
umtx_sleep
1501+
umtx_wakeup
15001502
unmount
15011503
updatelastlogx
15021504
updwtmpx

src/unix/bsd/freebsdlike/dragonfly/mod.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1481,6 +1481,9 @@ extern "C" {
14811481
pub fn utmpxname(file: *const ::c_char) -> ::c_int;
14821482

14831483
pub fn sys_checkpoint(tpe: ::c_int, fd: ::c_int, pid: ::pid_t, retval: ::c_int) -> ::c_int;
1484+
1485+
pub fn umtx_sleep(ptr: *const ::c_int, value: ::c_int, timeout: ::c_int) -> ::c_int;
1486+
pub fn umtx_wakeup(ptr: *const ::c_int, count: ::c_int) -> ::c_int;
14841487
}
14851488

14861489
#[link(name = "rt")]

0 commit comments

Comments
 (0)