-
Notifications
You must be signed in to change notification settings - Fork 23
Description
Proposal
Problem statement
The Rust thread ID does not have any relation to OS thread IDs. The OS thread ID is what shows up in tools like ps
and top
(via /proc
), debuggers, and various crash logs. It would be nice to have a way to make this value easily accessible, especially given that platform support is a mess (almost comically, every OS uses a slightly different name https://github.com/rust-lang/rust/blob/3507a749b365aae4eefa96ab700a9315d3280ee7/library/std/src/sys/pal/unix/thread.rs#L401-L455).
Motivating examples or use cases
This mostly supports tying logs from Rust programs to system logs.
Solution sketch
// std::thread
impl Thread {
// On most platforms the ID is 32 bit and signed, but in practice nonnegative.
fn os_id(&self) -> Option<u64>;
}
This returns the OS TID as a u64
if it could be determined, None
if the platform does not support it. The documentation should mention that OS guarantees are weaker than for our ThreadId
, the value may not be unique throughout process runtime.
The following platforms have support for some form of pthread_t -> pid_t
:
- Android
- Apple
- Windows
- Glibc 2.42 (released only a month ago)
On these, the pthread_t
can be stored in Thread
and os_id
can query an OS TID from that as needed. For everything else this will need a fallback that queries the current TID (much better supported) as part of thread startup code.
Alternatives
thread::current_os_id
would also provide a way to get the OS TID. It would be more limited but the implementation is simpler.
Links and related work
- Some prior discussion starting at #t-libs > Printing thread ID on panic bikeshed @ 💬
- Me asking posix for a more sane way to do this https://www.mail-archive.com/[email protected]/msg13876.html
What happens now?
This issue contains an API change proposal (or ACP) and is part of the libs-api team feature lifecycle. Once this issue is filed, the libs-api team will review open proposals as capability becomes available. Current response times do not have a clear estimate, but may be up to several months.
Possible responses
The libs team may respond in various different ways. First, the team will consider the problem (this doesn't require any concrete solution or alternatives to have been proposed):
- We think this problem seems worth solving, and the standard library might be the right place to solve it.
- We think that this probably doesn't belong in the standard library.
Second, if there's a concrete solution:
- We think this specific solution looks roughly right, approved, you or someone else should implement this. (Further review will still happen on the subsequent implementation PR.)
- We're not sure this is the right solution, and the alternatives or other materials don't give us enough information to be sure about that. Here are some questions we have that aren't answered, or rough ideas about alternatives we'd want to see discussed.