Fix buildbot failures

This commit is contained in:
Vadim Petrochenkov 2015-11-18 21:16:20 +03:00
parent 5cdfd8401b
commit 64b90f81c3
13 changed files with 23 additions and 9 deletions

View File

@ -14,7 +14,8 @@
pub mod raw;
#[stable(feature = "raw_ext", since = "1.1.0")]
pub mod fs {
#![stable(feature = "raw_ext", since = "1.1.0")]
#[stable(feature = "raw_ext", since = "1.1.0")]
pub use sys::fs::MetadataExt;
}

View File

@ -13,6 +13,7 @@
#![stable(feature = "raw_ext", since = "1.1.0")]
#[doc(inline)]
#[stable(feature = "raw_ext", since = "1.1.0")]
pub use self::arch::{dev_t, mode_t, blkcnt_t, blksize_t, ino_t, nlink_t, off_t, stat, time_t};
#[cfg(any(target_arch = "arm", target_arch = "x86"))]

View File

@ -14,7 +14,8 @@
pub mod raw;
#[stable(feature = "raw_ext", since = "1.1.0")]
pub mod fs {
#![stable(feature = "raw_ext", since = "1.1.0")]
#[stable(feature = "raw_ext", since = "1.1.0")]
pub use sys::fs::MetadataExt;
}

View File

@ -14,7 +14,8 @@
pub mod raw;
#[stable(feature = "raw_ext", since = "1.1.0")]
pub mod fs {
#![stable(feature = "raw_ext", since = "1.1.0")]
#[stable(feature = "raw_ext", since = "1.1.0")]
pub use sys::fs::MetadataExt;
}

View File

@ -14,7 +14,8 @@
pub mod raw;
#[stable(feature = "raw_ext", since = "1.1.0")]
pub mod fs {
#![stable(feature = "raw_ext", since = "1.1.0")]
#[stable(feature = "raw_ext", since = "1.1.0")]
pub use sys::fs::MetadataExt;
}

View File

@ -22,6 +22,7 @@
#[stable(feature = "raw_ext", since = "1.1.0")] pub type fflags_t = u32;
#[doc(inline)]
#[stable(feature = "raw_ext", since = "1.1.0")]
pub use self::arch::{stat, time_t};
#[cfg(target_arch = "x86")]

View File

@ -14,7 +14,8 @@
pub mod raw;
#[stable(feature = "raw_ext", since = "1.1.0")]
pub mod fs {
#![stable(feature = "raw_ext", since = "1.1.0")]
#[stable(feature = "raw_ext", since = "1.1.0")]
pub use sys::fs::MetadataExt;
}

View File

@ -14,7 +14,8 @@
pub mod raw;
#[stable(feature = "raw_ext", since = "1.1.0")]
pub mod fs {
#![stable(feature = "raw_ext", since = "1.1.0")]
#[stable(feature = "raw_ext", since = "1.1.0")]
pub use sys::fs::MetadataExt;
}

View File

@ -14,7 +14,8 @@
pub mod raw;
#[stable(feature = "raw_ext", since = "1.1.0")]
pub mod fs {
#![stable(feature = "raw_ext", since = "1.1.0")]
#[stable(feature = "raw_ext", since = "1.1.0")]
pub use sys::fs::MetadataExt;
}

View File

@ -14,7 +14,8 @@
pub mod raw;
#[stable(feature = "raw_ext", since = "1.1.0")]
pub mod fs {
#![stable(feature = "raw_ext", since = "1.1.0")]
#[stable(feature = "raw_ext", since = "1.1.0")]
pub use sys::fs::MetadataExt;
}

View File

@ -14,7 +14,8 @@
pub mod raw;
#[stable(feature = "raw_ext", since = "1.1.0")]
pub mod fs {
#![stable(feature = "raw_ext", since = "1.1.0")]
#[stable(feature = "raw_ext", since = "1.1.0")]
pub use sys::fs::MetadataExt;
}

View File

@ -253,12 +253,14 @@ pub mod eh_frame_registry {
}
#[cfg(not(test))]
#[no_mangle]
#[unstable(feature = "libstd_sys_internals", issue = "0")]
pub unsafe extern fn rust_eh_register_frames(eh_frame_begin: *const u8,
object: *mut u8) {
__register_frame_info(eh_frame_begin, object);
}
#[cfg(not(test))]
#[no_mangle]
#[unstable(feature = "libstd_sys_internals", issue = "0")]
pub unsafe extern fn rust_eh_unregister_frames(eh_frame_begin: *const u8,
object: *mut u8) {
__deregister_frame_info(eh_frame_begin, object);

View File

@ -47,6 +47,7 @@ mod inner {
}
}
#[unstable(feature = "libstd_sys_internals", issue = "0")]
impl<'a> Sub for &'a SteadyTime {
type Output = Duration;