Made root_task no longer special.

This commit is contained in:
Eric Holk
2011-07-23 14:01:43 -07:00
parent c15871ac51
commit b51f5c395c
8 changed files with 18 additions and 20 deletions

View File

@@ -261,6 +261,11 @@ int rust_kernel::start_task_threads(int num_threads)
return sched->rval;
}
rust_task *
rust_kernel::create_task(rust_task *spawner, const char *name) {
return sched->create_task(spawner, name);
}
#ifdef __WIN32__
void
rust_kernel::win32_require(LPCTSTR fn, BOOL ok) {