#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]
#![feature(core_intrinsics)]
#[cfg(any(target_os = "android", target_os = "linux"))] extern crate dpdk_unix;
#[cfg(windows)] extern crate kernel32;
#[cfg(unix)] extern crate libc;
#[macro_use] extern crate likely;
#[cfg(any(target_os = "ios", target_os = "macos"))] extern crate mach;
#[cfg(windows)] extern crate winapi;
#[cfg(any(target_os = "android", target_os = "linux"))] use ::dpdk_unix::ProcPath;
#[cfg(any(target_os = "android", target_os = "linux"))] use ::dpdk_unix::scheduling::CpuSet;
#[cfg(any(target_os = "android", target_os = "linux"))] use ::dpdk_unix::hyper_thread::HyperThread;
#[cfg(unix)] use ::libc::pid_t;
#[cfg(unix)] use ::libc::pthread_self;
#[cfg(unix)] use ::libc::pthread_t;
use ::std::borrow::Borrow;
use ::std::borrow::BorrowMut;
use ::std::collections::BTreeSet;
use ::std::ops::Deref;
use ::std::ops::DerefMut;
use ::std::ops::Index;
use ::std::ops::IndexMut;
use ::std::io;
#[cfg(any(target_os = "android", target_os = "linux"))] use ::std::mem::transmute;
#[cfg(target_os = "dragonfly")] pub(crate) mod dragonfly;
#[cfg(target_os = "freebsd")] pub(crate) mod freebsd;
#[cfg(any(target_os = "ios", target_os = "macos"))] pub(crate) mod ios_macos;
#[cfg(target_os = "netbsd")] pub(crate) mod netbsd;
#[cfg(target_env = "uclibc")] pub(crate) mod uclibc;
include!("LogicalCores.rs");
include!("LogicalCoreIdentifier.rs");
include!("PerLogicalCoreData.rs");
include!("ProcessIdentifier.rs");
include!("ThreadIdentifier.rs");