diff options
| author | Baoshan Pang <baoshan.pang@windriver.com> | 2019-08-23 13:25:01 -0700 |
|---|---|---|
| committer | Baoshan Pang <baoshan.pang@windriver.com> | 2019-08-23 14:39:38 -0700 |
| commit | 912feabfc282d0040f5e56bfbba752069d4f5a1f (patch) | |
| tree | 1b7252d15e782d8c5fcfef7a4ed3cb964508a4ba /src/libstd/sys/vxworks | |
| parent | bea0372a1a7a31b81f28cc4d9a83a2dc9a79d008 (diff) | |
| download | rust-912feabfc282d0040f5e56bfbba752069d4f5a1f.tar.gz rust-912feabfc282d0040f5e56bfbba752069d4f5a1f.zip | |
VxWorks does not provide a way to set the task name except at creation time
Diffstat (limited to 'src/libstd/sys/vxworks')
| -rw-r--r-- | src/libstd/sys/vxworks/thread.rs | 2 |
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) { |
