-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
std::thread: set_name implementation proposal for vxWorks. #128751
Conversation
b442aea
to
dbe200b
Compare
@@ -212,12 +217,33 @@ impl Thread { | |||
} | |||
} | |||
|
|||
#[cfg(target_os = "vxworks")] | |||
pub fn set_name(name: &CStr) { | |||
// FIXME: adding real STATUS type, OK, ERROR ... to libc crate eventually. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this type is only used for vxworks, I think we should just add it here, honestly.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
well because STATUS is just a c_int, and so on ... I was thinking they might serve later on in other places.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like libc already has OK
which is defined as a c_int
https://github.com/rust-lang/libc/blob/0e28c864c25d2e9b0ab082947445efccef213da4/src/vxworks/mod.rs#L616. So I think debug_assert_eq!(res, libc::OK);
should already work? We just discard the error condition so that isn't needed.
If a status type is used in other places, we should probably update libc first and then do the changes at once. Maybe just mark this // FIXME(libc): ...
to make it more searchable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool I missed the OK. I forgot this PR, while at it, I ll add STATUS type too.
This looks fine to me with something to address Jubilee's comment. @biabbas does this look correct? @devnexen not sure if you are working specifically on VxWorks or just RTOSs in general, but you may like to add yourself as a VxWorks maintainer in https://github.com/biabbas/rustLangRust/blob/bf9a4d6d43ef03b0e300d48772dbfe3d442f5f98/src/doc/rustc/src/platform-support/vxworks.md if you have any specific familiarity there. |
dbe200b
to
308c8e8
Compare
One last thing, this note is no longer accurate rust/library/std/src/sys/pal/unix/thread.rs Line 251 in 308c8e8
|
// We can't assume taskNameSet is necessarily available. | ||
// VX_TASK_NAME_LEN can be found set to 31, | ||
// however older versions can be set to only 10. | ||
// FIXME: if minimum version supported is 7, then let's try 31. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// FIXME(vxworks): if the minimum supported VxWorks version is >= 7 is chosen, the maximum length can change to 31.
Is something like this accurate?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure
308c8e8
to
b9e8e99
Compare
Thanks for the changes, this seems fine to me until rust-lang/libc#3780 merges. @bors r+ |
…iaskrgr Rollup of 9 pull requests Successful merges: - rust-lang#124944 (On trait bound mismatch, detect multiple crate versions in dep tree) - rust-lang#125048 (PinCoerceUnsized trait into core) - rust-lang#128406 (implement BufReader::peek) - rust-lang#128539 (Forbid unused unsafe in vxworks-specific std modules) - rust-lang#128687 (interpret: refactor function call handling to be better-abstracted) - rust-lang#128692 (Add a triagebot mention for `library/Cargo.lock`) - rust-lang#128710 (Don't ICE when getting an input file name's stem fails) - rust-lang#128718 (Consider `cfg_attr` checked by `CheckAttrVisitor`) - rust-lang#128751 (std::thread: set_name implementation proposal for vxWorks.) r? `@ghost` `@rustbot` modify labels: rollup
Rollup merge of rust-lang#128751 - devnexen:vxworks_set_thread_name, r=tgross35 std::thread: set_name implementation proposal for vxWorks.
@devnexen Did you test these changes? |
did you encounter any issue ? |
|
Can you be more descriptive please? |
By my understanding, the name on thread builder calls set_name.
Output with rust 1.80: This already works in rust 1.80, where these changes are not made. |
You may be able to try implementing a thread get_name locally, the vxWorks function is simply called |
But I'm sure the example I gave must be calling set_name. I'm confused on how the threads name are set without a set_name implementation. |
I may be wrong but aren't you simply accessing Thread::name() member in your code ? so it does not come from the thread then. Again might be misreading. |
this line is supposed to call set_name internally. |
|
I meant this |
what happens if you comment ? let status = unsafe { f(libc::taskIdSelf(), name.as_mut_ptr()) };
debug_assert_eq!(status, libc::OK); |
I would like to revert these changes, cause I see the thread name being set without a set_name implementation. Also the set_name implementation causes runtime failures. And note the current code has errors that cause the build to fail. |
@devnexen I'm grateful that you put in effort, but the set name implementation seems unnecessary after this exercise . |
So you want to revert this set_name but you re ok keeping available_parallelism (but still need fixing its one line error build) ? If that s the case, I m ok too to revert. |
But that still leaves the question of how the thread name is set to the name specified in builder class with an empty set_name implementation. |
did you try with a long thread name ? If the thread name is set it should be truncated. |
No description provided.