diff options
| author | Thayne McCombs <astrothayne@gmail.com> | 2018-04-03 19:47:37 -0600 |
|---|---|---|
| committer | Thayne McCombs <astrothayne@gmail.com> | 2018-04-03 19:47:37 -0600 |
| commit | 97ac479066a16d06ad4eb2cc2a4f58d1e7aa37b8 (patch) | |
| tree | 23f2c6ee15890533c2c63b2bf244454151c3ae45 /src/libstd/sys | |
| parent | c75d5e242fa5c745a89e5d9541e3cc737d269061 (diff) | |
| download | rust-97ac479066a16d06ad4eb2cc2a4f58d1e7aa37b8.tar.gz rust-97ac479066a16d06ad4eb2cc2a4f58d1e7aa37b8.zip | |
Stabilize parent_id()
Fixes #46104
Diffstat (limited to 'src/libstd/sys')
| -rw-r--r-- | src/libstd/sys/unix/ext/process.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/unix/ext/process.rs b/src/libstd/sys/unix/ext/process.rs index 60309bec6d4..7b4ec20d91f 100644 --- a/src/libstd/sys/unix/ext/process.rs +++ b/src/libstd/sys/unix/ext/process.rs @@ -193,7 +193,7 @@ impl IntoRawFd for process::ChildStderr { } /// Returns the OS-assigned process identifier associated with this process's parent. -#[unstable(feature = "unix_ppid", issue = "46104")] +#[stable(feature = "unix_ppid", since = "1.27.0")] pub fn parent_id() -> u32 { ::sys::os::getppid() } |
