diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-08-26 23:55:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-26 23:55:46 +0200 |
| commit | 9eeb7d566e3279208421ed7e49908511147f2a04 (patch) | |
| tree | 7e22b600997206050871aada22731c89463cb386 /src/libstd/sys | |
| parent | 7dc3c934e85a12bd48abf749d52c4be69e7eed5b (diff) | |
| parent | 602bea3c12b21e070a71001815a9bbf51cbd0556 (diff) | |
| download | rust-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.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) { |
