rt: Rename task_sleep intrinsic to task_yield. Remove usec param

This commit is contained in:
Brian Anderson
2012-02-02 15:48:08 -08:00
parent 8693fcc2d7
commit 18de0f2aeb
9 changed files with 31 additions and 48 deletions

View File

@@ -401,7 +401,7 @@ void rust_task::start()
// Only run this on the rust stack
void
rust_task::yield(size_t time_in_us, bool *killed) {
rust_task::yield(bool *killed) {
if (this->killed) {
*killed = true;
}