about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBaoshan <pangbw@gmail.com>2019-08-23 14:50:01 -0700
committerGitHub <noreply@github.com>2019-08-23 14:50:01 -0700
commit602bea3c12b21e070a71001815a9bbf51cbd0556 (patch)
tree1b7252d15e782d8c5fcfef7a4ed3cb964508a4ba
parentbea0372a1a7a31b81f28cc4d9a83a2dc9a79d008 (diff)
parent912feabfc282d0040f5e56bfbba752069d4f5a1f (diff)
downloadrust-602bea3c12b21e070a71001815a9bbf51cbd0556.tar.gz
rust-602bea3c12b21e070a71001815a9bbf51cbd0556.zip
Merge pull request #8 from Wind-River/set_name_003
VxWorks does not provide a way to set the task name except at creation time
-rw-r--r--src/libstd/sys/vxworks/thread.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/vxworks/thread.rs b/src/libstd/sys/vxworks/thread.rs
index 58af8cbe48e..ef896f6a6e8 100644
--- a/src/libstd/sys/vxworks/thread.rs
+++ b/src/libstd/sys/vxworks/thread.rs
@@ -77,7 +77,7 @@ impl Thread {
     }
 
     pub fn set_name(_name: &CStr) {
-        assert!(false, "FIXME: set_name");
+        // VxWorks does not provide a way to set the task name except at creation time
     }
 
     pub fn sleep(dur: Duration) {