From 912feabfc282d0040f5e56bfbba752069d4f5a1f Mon Sep 17 00:00:00 2001 From: Baoshan Pang Date: Fri, 23 Aug 2019 13:25:01 -0700 Subject: [PATCH] VxWorks does not provide a way to set the task name except at creation time --- src/libstd/sys/vxworks/thread.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ pub fn yield_now() { } 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) {