about summary refs log tree commit diff
path: root/src/libstd/sys
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-08-26 23:55:46 +0200
committerGitHub <noreply@github.com>2019-08-26 23:55:46 +0200
commit9eeb7d566e3279208421ed7e49908511147f2a04 (patch)
tree7e22b600997206050871aada22731c89463cb386 /src/libstd/sys
parent7dc3c934e85a12bd48abf749d52c4be69e7eed5b (diff)
parent602bea3c12b21e070a71001815a9bbf51cbd0556 (diff)
downloadrust-9eeb7d566e3279208421ed7e49908511147f2a04.tar.gz
rust-9eeb7d566e3279208421ed7e49908511147f2a04.zip
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
Diffstat (limited to 'src/libstd/sys')
-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) {