Skip to content
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

Merged
merged 1 commit into from
Aug 7, 2024

Conversation

devnexen
Copy link
Contributor

@devnexen devnexen commented Aug 6, 2024

No description provided.

@rustbot
Copy link
Collaborator

rustbot commented Aug 6, 2024

r? @tgross35

rustbot has assigned @tgross35.
They will have a look at your PR within the next two weeks and either review your PR or reassign to another reviewer.

Use r? to explicitly pick a reviewer

@rustbot rustbot added O-unix Operating system: Unix-like S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-libs Relevant to the library team, which will review and decide on the PR/issue. labels Aug 6, 2024
@devnexen devnexen force-pushed the vxworks_set_thread_name branch 2 times, most recently from b442aea to dbe200b Compare August 6, 2024 18:49
@devnexen devnexen marked this pull request as ready for review August 6, 2024 18:50
@@ -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.
Copy link
Member

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.

Copy link
Contributor Author

@devnexen devnexen Aug 6, 2024

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.

Copy link
Contributor

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.

Copy link
Contributor Author

@devnexen devnexen Aug 6, 2024

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.

@tgross35
Copy link
Contributor

tgross35 commented Aug 6, 2024

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.

@devnexen devnexen force-pushed the vxworks_set_thread_name branch from dbe200b to 308c8e8 Compare August 6, 2024 19:36
@tgross35
Copy link
Contributor

tgross35 commented Aug 6, 2024

One last thing, this note is no longer accurate

// Newlib, Emscripten, and VxWorks have no way to set a thread name.

// 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.
Copy link
Contributor

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?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sure

@devnexen devnexen force-pushed the vxworks_set_thread_name branch from 308c8e8 to b9e8e99 Compare August 6, 2024 20:10
@tgross35
Copy link
Contributor

tgross35 commented Aug 6, 2024

Thanks for the changes, this seems fine to me until rust-lang/libc#3780 merges.

@bors r+

@bors
Copy link
Collaborator

bors commented Aug 6, 2024

📌 Commit b9e8e99 has been approved by tgross35

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Aug 6, 2024
bors added a commit to rust-lang-ci/rust that referenced this pull request Aug 7, 2024
…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
@bors bors merged commit 6ed9a33 into rust-lang:master Aug 7, 2024
6 checks passed
rust-timer added a commit to rust-lang-ci/rust that referenced this pull request Aug 7, 2024
Rollup merge of rust-lang#128751 - devnexen:vxworks_set_thread_name, r=tgross35

std::thread: set_name implementation proposal for vxWorks.
@rustbot rustbot added this to the 1.82.0 milestone Aug 7, 2024
@biabbas
Copy link
Contributor

biabbas commented Aug 7, 2024

@devnexen Did you test these changes?

@devnexen
Copy link
Contributor Author

devnexen commented Aug 7, 2024

did you encounter any issue ?

@biabbas
Copy link
Contributor

biabbas commented Aug 7, 2024

did you encounter any issue ?
Yes.

@tgross35
Copy link
Contributor

tgross35 commented Aug 7, 2024

Can you be more descriptive please?

@biabbas
Copy link
Contributor

biabbas commented Aug 7, 2024

By my understanding, the name on thread builder calls set_name.
So I'm using this code to test:

use std::thread;
use std::time::Duration;

fn main() {
    // Create and start the thread with a name
    let handle = thread::Builder::new()
        .name("MyTestThread_1".to_string())
        .spawn(|| {
            // Print the current thread's name
            // Note: The thread's name is not directly accessible in Rust.
            // However, you can use a workaround with thread-local storage or other means.
            // Here, we're simulating the concept of using a named thread.
            let binding = thread::current();
            let name = binding.name().unwrap_or("Unnamed");
            println!("Thread Name in threadFunction: {}", name);
            thread::sleep(Duration::from_secs(1)); // Sleep to simulate work
        })
        .expect("Failed to create thread");
    // Wait for the thread to finish
    handle.join().expect("Thread panicked");
    // Verify the name in the main thread
    let binding = thread::current();
    let main_thread_name = binding.name().unwrap_or("Unnamed");
    println!("Main Thread Name: {}", main_thread_name);
}

Output with rust 1.80:
[vxWorks *]# ./set_name.vxe
Thread Name in threadFunction: MyTestThread_1
Main Thread Name: main

This already works in rust 1.80, where these changes are not made.
I might be wrong about this. Should the function be tested some other way?

@devnexen
Copy link
Contributor Author

devnexen commented Aug 7, 2024

You may be able to try implementing a thread get_name locally, the vxWorks function is simply called taskName(libc::TASK_ID) -> *mut libc::c_char; (by head). Just a suggestion :)

@biabbas
Copy link
Contributor

biabbas commented Aug 7, 2024

You may be able to try implementing a thread get_name locally, the vxWorks function is simply called taskName(libc::TASK_ID) -> *mut libc::c_char; (by head). Just a suggestion :)

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.

@devnexen
Copy link
Contributor Author

devnexen commented Aug 7, 2024

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.

@biabbas
Copy link
Contributor

biabbas commented Aug 8, 2024

.name("MyTestThread_1".to_string())

this line is supposed to call set_name internally.

@biabbas
Copy link
Contributor

biabbas commented Aug 8, 2024

Can you be more descriptive please?

  1. Build errors
    build_error1
    After resolving this,
    build_error2

  2. After resolving the build error, while testing the function I added a print statement in the end of the function set name.
    This was the output with this configuration : 49c3476run_time_error

@devnexen
Copy link
Contributor Author

devnexen commented Aug 8, 2024

.name("MyTestThread_1".to_string())

this line is supposed to call set_name internally.

I meant this let name = binding.name().unwrap_or("Unnamed");

@biabbas
Copy link
Contributor

biabbas commented Aug 8, 2024

.name("MyTestThread_1".to_string())

this line is supposed to call set_name internally.

I meant this let name = binding.name().unwrap_or("Unnamed");

Output with rust 180 with print debug statement added in the empty set name implementation:
runtime_output_with_180

@devnexen
Copy link
Contributor Author

devnexen commented Aug 8, 2024

what happens if you comment ?

let status = unsafe { f(libc::taskIdSelf(), name.as_mut_ptr()) };
            debug_assert_eq!(status, libc::OK);

@biabbas
Copy link
Contributor

biabbas commented Aug 8, 2024

let status = unsafe { f(libc::taskIdSelf(), name.as_mut_ptr()) };

That is how I resolved the build errors.
Refer these:

1f1dbb5
0e5b18a
49c3476

All the runtime output shared were captured after a successful build.

@biabbas
Copy link
Contributor

biabbas commented Aug 8, 2024

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.

@biabbas
Copy link
Contributor

biabbas commented Aug 8, 2024

@devnexen I'm grateful that you put in effort, but the set name implementation seems unnecessary after this exercise .

@devnexen
Copy link
Contributor Author

devnexen commented Aug 8, 2024

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.

@biabbas
Copy link
Contributor

biabbas commented Aug 8, 2024

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.

@devnexen
Copy link
Contributor Author

devnexen commented Aug 8, 2024

did you try with a long thread name ? If the thread name is set it should be truncated.

@biabbas
Copy link
Contributor

biabbas commented Aug 8, 2024

did you try with a long thread name ? If the thread name is set it should be truncated.
Yes. It's not truncated.
I removed println from set_name and the runtime issue was solved. Do you know why?
image

set_name_1801.vxe was compiled with rustc 1.80, which did not have an implementation for setname
set_name_1802.vxe was compiled with rustc 1.82 which had setname implementation.

I'll just fix the build failures on both set name and available_parallelism and raise a pr.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
O-unix Operating system: Unix-like S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. T-libs Relevant to the library team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants