diff options
| author | Taylor Yu <tlyu@mit.edu> | 2021-07-03 11:35:47 -0500 |
|---|---|---|
| committer | Taylor Yu <tlyu@mit.edu> | 2021-07-03 11:35:47 -0500 |
| commit | 24d6536be9ca0897550d8d4bd38b874a74e701e6 (patch) | |
| tree | cb6ceb1fc96d38dab7ca716af5aef9f609cc842a | |
| parent | a8b8558f083d86247ef3260ebb4f97b276cdbf73 (diff) | |
| download | rust-24d6536be9ca0897550d8d4bd38b874a74e701e6.tar.gz rust-24d6536be9ca0897550d8d4bd38b874a74e701e6.zip | |
stdio_locked: add tracking issue
| -rw-r--r-- | library/std/src/io/mod.rs | 2 | ||||
| -rw-r--r-- | library/std/src/io/stdio.rs | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/library/std/src/io/mod.rs b/library/std/src/io/mod.rs index 32862629083..c68233b6a24 100644 --- a/library/std/src/io/mod.rs +++ b/library/std/src/io/mod.rs @@ -277,7 +277,7 @@ pub use self::error::{Error, ErrorKind, Result}; pub use self::stdio::set_output_capture; #[stable(feature = "rust1", since = "1.0.0")] pub use self::stdio::{stderr, stdin, stdout, Stderr, Stdin, Stdout}; -#[unstable(feature = "stdio_locked", issue = "none")] +#[unstable(feature = "stdio_locked", issue = "86845")] pub use self::stdio::{stderr_locked, stdin_locked, stdout_locked}; #[stable(feature = "rust1", since = "1.0.0")] pub use self::stdio::{StderrLock, StdinLock, StdoutLock}; diff --git a/library/std/src/io/stdio.rs b/library/std/src/io/stdio.rs index 293f0e31ce0..206687e38fb 100644 --- a/library/std/src/io/stdio.rs +++ b/library/std/src/io/stdio.rs @@ -347,7 +347,7 @@ pub fn stdin() -> Stdin { /// Ok(()) /// } /// ``` -#[unstable(feature = "stdio_locked", issue = "none")] +#[unstable(feature = "stdio_locked", issue = "86845")] pub fn stdin_locked() -> StdinLock<'static> { stdin().into_locked() } @@ -442,7 +442,7 @@ impl Stdin { /// Ok(()) /// } /// ``` - #[unstable(feature = "stdio_locked", issue = "none")] + #[unstable(feature = "stdio_locked", issue = "86845")] pub fn into_locked(self) -> StdinLock<'static> { self.lock_any() } @@ -668,7 +668,7 @@ pub fn stdout() -> Stdout { /// Ok(()) /// } /// ``` -#[unstable(feature = "stdio_locked", issue = "none")] +#[unstable(feature = "stdio_locked", issue = "86845")] pub fn stdout_locked() -> StdoutLock<'static> { stdout().into_locked() } @@ -745,7 +745,7 @@ impl Stdout { /// Ok(()) /// } /// ``` - #[unstable(feature = "stdio_locked", issue = "none")] + #[unstable(feature = "stdio_locked", issue = "86845")] pub fn into_locked(self) -> StdoutLock<'static> { self.lock_any() } @@ -945,7 +945,7 @@ pub fn stderr() -> Stderr { /// Ok(()) /// } /// ``` -#[unstable(feature = "stdio_locked", issue = "none")] +#[unstable(feature = "stdio_locked", issue = "86845")] pub fn stderr_locked() -> StderrLock<'static> { stderr().into_locked() } @@ -1005,7 +1005,7 @@ impl Stderr { /// Ok(()) /// } /// ``` - #[unstable(feature = "stdio_locked", issue = "none")] + #[unstable(feature = "stdio_locked", issue = "86845")] pub fn into_locked(self) -> StderrLock<'static> { self.lock_any() } |
