Skip to content

Commit

Permalink
adding mq_notify glibc wrapper for SYS_mq_notify syscall.
Browse files Browse the repository at this point in the history
(backport <rust-lang#3849>)
(cherry picked from commit 99fb76f)
  • Loading branch information
devnexen authored and tgross35 committed Aug 28, 2024
1 parent 3509dad commit bb70a99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions libc-test/semver/linux-gnu.txt
Original file line number Diff line number Diff line change
Expand Up @@ -657,6 +657,7 @@ malloc_info
malloc_trim
malloc_usable_size
mallopt
mq_notify
nl_mmap_hdr
nl_mmap_req
nl_pktinfo
Expand Down
2 changes: 2 additions & 0 deletions src/unix/linux_like/linux/gnu/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1541,6 +1541,8 @@ extern "C" {

// Added in `glibc` 2.34
pub fn close_range(first: ::c_uint, last: ::c_uint, flags: ::c_int) -> ::c_int;

pub fn mq_notify(mqdes: ::mqd_t, sevp: *const ::sigevent) -> ::c_int;
}

cfg_if! {
Expand Down

0 comments on commit bb70a99

Please sign in to comment.