Skip to content

Commit 423cbb1

Browse files
committed
Add stability attribute
1 parent d7bbefa commit 423cbb1

File tree

12 files changed

+17
-0
lines changed

12 files changed

+17
-0
lines changed

library/std/src/sys/custom/alloc.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![unstable(issue = "none", feature = "std_internals")]
2+
13
use crate::alloc::{GlobalAlloc, Layout, System};
24
use crate::os::custom::alloc::IMPL;
35
use crate::sync::Mutex;

library/std/src/sys/custom/env.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![unstable(issue = "none", feature = "std_internals")]
2+
13
pub mod os {
24
pub const FAMILY: &str = "";
35
pub const OS: &str = "custom";

library/std/src/sys/custom/fs.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#![unstable(issue = "none", feature = "std_internals")]
12
#![allow(missing_docs)]
23

34
use crate::custom_os_impl;

library/std/src/sys/custom/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
//! System bindings for custom platforms
22
3+
#![unstable(issue = "none", feature = "std_internals")]
4+
35
use crate::custom_os_impl;
46
use crate::io as std_io;
57

library/std/src/sys/custom/net.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#![unstable(issue = "none", feature = "std_internals")]
12
#![allow(missing_docs)]
23

34
use crate::custom_os_impl;

library/std/src/sys/custom/os.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#![unstable(issue = "none", feature = "std_internals")]
12
#![allow(missing_docs)]
23

34
use crate::custom_os_impl;

library/std/src/sys/custom/pipe.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![unstable(issue = "none", feature = "std_internals")]
2+
13
use crate::io::{self, BorrowedCursor, IoSlice, IoSliceMut};
24

35
pub type AnonPipe = Box<dyn AnonPipeApi>;

library/std/src/sys/custom/process.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#![unstable(issue = "none", feature = "std_internals")]
12
#![allow(missing_docs)]
23

34
use crate::custom_os_impl;

library/std/src/sys/custom/stdio.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#![unstable(issue = "none", feature = "std_internals")]
12
use crate::custom_os_impl;
23
use crate::io;
34

library/std/src/sys/custom/thread.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#![unstable(issue = "none", feature = "std_internals")]
12
#![allow(missing_docs)]
23

34
use crate::custom_os_impl;

0 commit comments

Comments
 (0)