Skip to content

Commit 9eeb7d5

Browse files
authored
Rollup merge of #63836 - Wind-River:master_003, r=alexcrichton
VxWorks does not provide a way to set the task name except at creation time Make set_name do thing as VxWorks does not provide a way to set the task name except at creation time. r? @alexcrichton cc @n-salim
2 parents 7dc3c93 + 602bea3 commit 9eeb7d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/sys/vxworks/thread.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ impl Thread {
7777
}
7878

7979
pub fn set_name(_name: &CStr) {
80-
assert!(false, "FIXME: set_name");
80+
// VxWorks does not provide a way to set the task name except at creation time
8181
}
8282

8383
pub fn sleep(dur: Duration) {

0 commit comments

Comments
 (0)