-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tracking issue for std::process::id #44971
Comments
Seems reasonable to add! |
|
Add current_pid function Fixes rust-lang#44971
Reopening as the tracking issue. |
While porting Rust over to CloudABI, a sandboxed UNIX-like runtime environment, I ran into the issue that there is no way for me to implement this function. As we're aiming to use CloudABI in distributed settings, there is no traditional 16/32-bit process identifier. Instead, processes may be identified by a UUID. This is useful, as integer process identifiers can easily collide when dealing with many instances of a job (due to the birthday paradox). As this function was only introduced recently, would it still be possible to alter it to return an opaque, but displayable data type instead? That said, almost all of the other functions provided by this module are also broken on CloudABI. The traditional |
I'm opposed a completely opaque data type, because that limits the usefulness. For example, that makes it difficult to use in C (or dbus) that require a PID. However, I think it would be alright if the it was a semi-opaque type with OS-specific API's to get the underlying representation (in std::os::unix, etc). However, that would break consistency with |
As @tmccombs has mentioned, the ship has already sailed here due to |
One thing that would be low-hanging fruit would be to at least have some kind of type alias for this. On UNIX/Windows, it could be defined as |
Given this:
and this:
I’m inclined to stabilize @rfcbot fcp merge Hopefully the portability lint can eventually help a CloudABI port to "cleanly" implement this differently, or not at all. |
Team member @SimonSapin has proposed to merge this. The next step is review by the rest of the tagged teams: No concerns currently listed. Once a majority of reviewers approve (and none object), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up! See this document for info about what commands tagged team members can give me. |
🔔 This is now entering its final comment period, as per the review above. 🔔 |
The final comment period is now complete. |
Stabilize `std::process::id()` Fixes #44971
The standard library provides a way to get the process id of a child process with
std::process::Child::id()
, but doesn't have any way to get the current processes id (the equivalent ofgetpid
).It is possible to do this with
libc::getpid
, but it seems to me that this should be something that is part of the standard library, especially since it already has cross-platform support for process ids of child processes.The text was updated successfully, but these errors were encountered: