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
This commit is contained in:
Mazdak Farrokhzad 2019-08-26 23:55:46 +02:00 committed by GitHub
commit 9eeb7d566e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) {