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
  • Loading branch information
devnexen committed Aug 17, 2024
1 parent f136b30 commit 99fb76f
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 @@ -651,6 +651,7 @@ malloc_stats
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 @@ -1547,6 +1547,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 99fb76f

Please sign in to comment.