Sha256: 4aefb0d1dab2584f22bddb8958d03f0dcb019c79d638a6f5c5972569443c7362

Contents?: true

Size: 1.27 KB

Versions: 5

Compression:

Stored size: 1.27 KB

Contents

//! Low level threading primitives

#[cfg(not(target_os = "redox"))]
use crate::errno::Errno;
#[cfg(not(target_os = "redox"))]
use crate::Result;
#[cfg(not(target_os = "redox"))]
use crate::sys::signal::Signal;
use libc::{self, pthread_t};

/// Identifies an individual thread.
pub type Pthread = pthread_t;

/// Obtain ID of the calling thread (see
/// [`pthread_self(3)`](https://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_self.html)
///
/// The thread ID returned by `pthread_self()` is not the same thing as
/// the kernel thread ID returned by a call to `gettid(2)`.
#[inline]
pub fn pthread_self() -> Pthread {
    unsafe { libc::pthread_self() }
}

/// Send a signal to a thread (see [`pthread_kill(3)`]).
///
/// If `signal` is `None`, `pthread_kill` will only preform error checking and
/// won't send any signal.
///
/// [`pthread_kill(3)`]: https://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_kill.html
#[allow(clippy::not_unsafe_ptr_arg_deref)]
#[cfg(not(target_os = "redox"))]
pub fn pthread_kill<T: Into<Option<Signal>>>(thread: Pthread, signal: T) -> Result<()> {
    let sig = match signal.into() {
        Some(s) => s as libc::c_int,
        None => 0,
    };
    let res = unsafe { libc::pthread_kill(thread, sig) };
    Errno::result(res).map(drop)
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
wasmtime-6.0.1 ./ext/cargo-vendor/nix-0.23.2/src/sys/pthread.rs
wasmtime-6.0.0 ./ext/cargo-vendor/nix-0.23.2/src/sys/pthread.rs
wasmtime-5.0.0 ./ext/cargo-vendor/nix-0.23.2/src/sys/pthread.rs
wasmtime-0.4.1 ./ext/cargo-vendor/nix-0.23.2/src/sys/pthread.rs
wasmtime-0.4.0 ./ext/cargo-vendor/nix-0.23.2/src/sys/pthread.rs