Skip to content

File tree

3 files changed

+66
-0
lines changed

3 files changed

+66
-0
lines changed

libc-test/build.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1939,6 +1939,7 @@ fn test_freebsd(target: &str) {
19391939
"sys/ucontext.h",
19401940
"sys/uio.h",
19411941
"sys/ktrace.h",
1942+
"sys/umtx.h",
19421943
"sys/un.h",
19431944
"sys/user.h",
19441945
"sys/utsname.h",

libc-test/semver/freebsd.txt

+24
Original file line numberDiff line numberDiff line change
@@ -1240,6 +1240,29 @@ UF_REPARSE
12401240
UF_SETTABLE
12411241
UF_SPARSE
12421242
UF_SYSTEM
1243+
UMTX_ABSTIME
1244+
UMTX_OP_WAIT
1245+
UMTX_OP_WAKE
1246+
UMTX_OP_MUTEX_TRYLOCK
1247+
UMTX_OP_MUTEX_LOCK
1248+
UMTX_OP_MUTEX_UNLOCK
1249+
UMTX_OP_SET_CEILING
1250+
UMTX_OP_CV_WAIT
1251+
UMTX_OP_CV_SIGNAL
1252+
UMTX_OP_CV_BROADCAST
1253+
UMTX_OP_WAIT_UINT
1254+
UMTX_OP_RW_RDLOCK
1255+
UMTX_OP_RW_WRLOCK
1256+
UMTX_OP_RW_UNLOCK
1257+
UMTX_OP_WAIT_UINT_PRIVATE
1258+
UMTX_OP_WAKE_PRIVATE
1259+
UMTX_OP_MUTEX_WAIT
1260+
UMTX_OP_NWAKE_PRIVATE
1261+
UMTX_OP_MUTEX_WAKE2
1262+
UMTX_OP_SEM2_WAIT
1263+
UMTX_OP_SEM2_WAKE
1264+
UMTX_OP_SHM
1265+
UMTX_OP_ROBUST_LISTS
12431266
USER_BC_BASE_MAX
12441267
USER_BC_DIM_MAX
12451268
USER_BC_SCALE_MAX
@@ -1414,6 +1437,7 @@ __c_anonymous_cr_pid
14141437
__error
14151438
__xuname
14161439
_sem
1440+
_umtx_op
14171441
abs
14181442
accept4
14191443
accept_filter_arg

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

+41
Original file line numberDiff line numberDiff line change
@@ -988,6 +988,12 @@ s! {
988988
pub function_set_name: [::c_char; ::TCP_FUNCTION_NAME_LEN_MAX as usize],
989989
pub pcbcnt: u32,
990990
}
991+
992+
pub struct _umtx_time {
993+
pub _timeout: ::timespec,
994+
pub _flags: u32,
995+
pub _clockid: u32,
996+
}
991997
}
992998

993999
s_no_extra_traits! {
@@ -3657,6 +3663,33 @@ pub const SHM_LARGEPAGE_ALLOC_HARD: ::c_int = 2;
36573663
pub const SHM_RENAME_NOREPLACE: ::c_int = 1 << 0;
36583664
pub const SHM_RENAME_EXCHANGE: ::c_int = 1 << 1;
36593665

3666+
// sys/umtx.h
3667+
3668+
pub const UMTX_OP_WAIT: ::c_int = 2;
3669+
pub const UMTX_OP_WAKE: ::c_int = 3;
3670+
pub const UMTX_OP_MUTEX_TRYLOCK: ::c_int = 4;
3671+
pub const UMTX_OP_MUTEX_LOCK: ::c_int = 5;
3672+
pub const UMTX_OP_MUTEX_UNLOCK: ::c_int = 6;
3673+
pub const UMTX_OP_SET_CEILING: ::c_int = 7;
3674+
pub const UMTX_OP_CV_WAIT: ::c_int = 8;
3675+
pub const UMTX_OP_CV_SIGNAL: ::c_int = 9;
3676+
pub const UMTX_OP_CV_BROADCAST: ::c_int = 10;
3677+
pub const UMTX_OP_WAIT_UINT: ::c_int = 11;
3678+
pub const UMTX_OP_RW_RDLOCK: ::c_int = 12;
3679+
pub const UMTX_OP_RW_WRLOCK: ::c_int = 13;
3680+
pub const UMTX_OP_RW_UNLOCK: ::c_int = 14;
3681+
pub const UMTX_OP_WAIT_UINT_PRIVATE: ::c_int = 15;
3682+
pub const UMTX_OP_WAKE_PRIVATE: ::c_int = 16;
3683+
pub const UMTX_OP_MUTEX_WAIT: ::c_int = 17;
3684+
pub const UMTX_OP_NWAKE_PRIVATE: ::c_int = 21;
3685+
pub const UMTX_OP_MUTEX_WAKE2: ::c_int = 22;
3686+
pub const UMTX_OP_SEM2_WAIT: ::c_int = 23;
3687+
pub const UMTX_OP_SEM2_WAKE: ::c_int = 24;
3688+
pub const UMTX_OP_SHM: ::c_int = 25;
3689+
pub const UMTX_OP_ROBUST_LISTS: ::c_int = 26;
3690+
3691+
pub const UMTX_ABSTIME: u32 = 1;
3692+
36603693
const_fn! {
36613694
{const} fn _ALIGN(p: usize) -> usize {
36623695
(p + _ALIGNBYTES) & !_ALIGNBYTES
@@ -4220,6 +4253,14 @@ extern "C" {
42204253
) -> ::c_int;
42214254
pub fn memfd_create(name: *const ::c_char, flags: ::c_uint) -> ::c_int;
42224255
pub fn setaudit(auditinfo: *const auditinfo_t) -> ::c_int;
4256+
4257+
pub fn _umtx_op(
4258+
obj: *mut ::c_void,
4259+
op: ::c_int,
4260+
val: ::c_ulong,
4261+
uaddr: *mut ::c_void,
4262+
uaddr2: *mut ::c_void,
4263+
) -> ::c_int;
42234264
}
42244265

42254266
#[link(name = "kvm")]

0 commit comments

Comments
 (0)