#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]
#[cfg(windows)] extern crate kernel32;
#[cfg(unix)] extern crate libc;
#[cfg(any(target_os = "ios", target_os = "macos"))] extern crate mach;
#[cfg(windows)] extern crate winapi;
#[cfg(unix)] use ::libc::pid_t;
#[cfg(unix)] use ::libc::pthread_self;
#[cfg(unix)] use ::libc::pthread_t;
use ::std::collections::HashSet;
use ::std::io;
#[cfg(target_os = "dragonfly")] pub(crate) mod dragonfly;
#[cfg(target_os = "emscripten")] pub(crate) mod emscripten;
#[cfg(target_os = "freebsd")] pub(crate) mod freebsd;
#[cfg(target_os = "fuschia")] pub(crate) mod fuschia;
#[cfg(any(target_os = "ios", target_os = "macos"))] pub(crate) mod ios_macos;
#[cfg(target_os = "linux")] pub(crate) mod linux;
#[cfg(target_os = "netbsd")] pub(crate) mod netbsd;
#[cfg(target_env = "uclibc")] pub(crate) mod uclibc;
include!("LogicalCores.rs");
include!("ProcessIdentifier.rs");
include!("ThreadIdentifier.rs");