We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents acad4cc + d4f5e89 commit 73f0871Copy full SHA for 73f0871
src/libstd/process.rs
@@ -1420,14 +1420,13 @@ pub fn abort() -> ! {
1420
/// Basic usage:
1421
///
1422
/// ```no_run
1423
-/// #![feature(getpid)]
1424
/// use std::process;
1425
1426
/// println!("My pid is {}", process::id());
1427
/// ```
1428
1429
1430
-#[unstable(feature = "getpid", issue = "44971", reason = "recently added")]
+#[stable(feature = "getpid", since = "1.27.0")]
1431
pub fn id() -> u32 {
1432
::sys::os::getpid()
1433
}
0 commit comments