endpoint_sec/event/event_setuid.rs
1//! [`EventSetuid`]
2
3use endpoint_sec_sys::{es_event_setuid_t, uid_t};
4
5/// A process has called `setuid()`.
6#[doc(alias = "es_event_setuid_t")]
7pub struct EventSetuid<'a> {
8 /// Raw event
9 pub(crate) raw: &'a es_event_setuid_t,
10}
11
12impl EventSetuid<'_> {
13 /// Argument to the `setuid()` call.
14 #[inline(always)]
15 pub fn uid(&self) -> uid_t {
16 self.raw.uid
17 }
18}
19
20// Safety: safe to send across threads: does not contain any interior mutability nor depend on current thread state
21unsafe impl Send for EventSetuid<'_> {}
22// Safety: safe to share across threads: does not contain any interior mutability nor depend on current thread state
23unsafe impl Sync for EventSetuid<'_> {}
24
25impl_debug_eq_hash_with_functions!(EventSetuid<'a>; uid);