1
Fork 0

Add JoinHandleExt to get the pthread_t on unix platforms

Signed-off-by: Peter Atashian <retep998@gmail.com>
This commit is contained in:
Peter Atashian 2015-12-03 21:58:00 -05:00
parent 95cdada99a
commit 9749a193d6
14 changed files with 79 additions and 0 deletions

View file

@ -12,9 +12,13 @@
#![stable(feature = "raw_ext", since = "1.1.0")]
use os::raw::c_ulong;
#[stable(feature = "raw_ext", since = "1.1.0")] pub type dev_t = u64;
#[stable(feature = "raw_ext", since = "1.1.0")] pub type mode_t = u32;
#[unstable(feature = "pthread_t", issue = "29791")] pub type pthread_t = c_ulong;
#[doc(inline)]
#[stable(feature = "raw_ext", since = "1.1.0")]
pub use self::arch::{off_t, ino_t, nlink_t, blksize_t, blkcnt_t, stat, time_t};