pub fn spawn_raw<F>( entry: F, name: String, stack_size: usize, ) -> Result<ThreadHandle, TaskError>where F: FnOnce() + Send + 'static,
Creates a scheduler-owned kernel thread and enqueues it on the current CPU.