Skip to content

Commit 01b4902

Browse files
committed
Auto merge of #2763 - m-ou-se:dragonflybsd-futex, r=Amanieu
Add DragonFly umtx_{sleep, wakeup}. This adds DragonFly's futex functions: https://man.dragonflybsd.org/?command=umtx&section=2
2 parents d260cea + 9579c1d commit 01b4902

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)