1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright (C) 2019 by Josh Gao <josh@jmgao.dev>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
// OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.

//! A crate to help with fetching thread ids across multiple platforms.

#[cfg(any(target_os = "linux", target_os = "android", rustdoc))]
mod imp {
  /// Get the current thread's thread id.
  ///
  /// ```
  /// use gettid::gettid;
  /// let main_tid = gettid();
  /// let pid = std::process::id();
  /// assert_eq!(pid as u64, main_tid);
  /// let thread_tid = std::thread::spawn(gettid).join().unwrap();
  /// assert_ne!(main_tid, thread_tid);
  /// ```
  pub fn gettid() -> u64 {
    unsafe { libc::syscall(libc::SYS_gettid) as u64 }
  }
}

#[cfg(target_os = "macos")]
mod imp {
  #[link(name = "pthread")]
  extern "C" {
    fn pthread_threadid_np(thread: libc::pthread_t, thread_id: *mut libc::uint64_t) -> libc::c_int;
  }

  pub fn gettid() -> u64 {
    let mut result = 0;
    unsafe {let _ = pthread_threadid_np(0, &mut result); }
    result
  }
}

#[cfg(target_os = "windows")]
mod imp {
  pub fn gettid() -> u64 {
    unsafe { winapi::um::processthreadsapi::GetCurrentThreadId().into() }
  }
}

pub use imp::*;