-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Since UEFI has no concept of threads, most of this module can be ignored. However, implementing parts that make sense. - Implement sleep - Implement available_parallelism Signed-off-by: Ayush Singh <ayushdevel1325@gmail.com>
- Loading branch information
Showing
2 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
use super::unsupported; | ||
use crate::ffi::CStr; | ||
use crate::io; | ||
use crate::num::NonZeroUsize; | ||
use crate::ptr::NonNull; | ||
use crate::time::Duration; | ||
|
||
pub struct Thread(!); | ||
|
||
pub const DEFAULT_MIN_STACK_SIZE: usize = 4096; | ||
|
||
impl Thread { | ||
// unsafe: see thread::Builder::spawn_unchecked for safety requirements | ||
pub unsafe fn new(_stack: usize, _p: Box<dyn FnOnce()>) -> io::Result<Thread> { | ||
unsupported() | ||
} | ||
|
||
pub fn yield_now() { | ||
// do nothing | ||
} | ||
|
||
pub fn set_name(_name: &CStr) { | ||
// nope | ||
} | ||
|
||
pub fn sleep(dur: Duration) { | ||
let boot_services: NonNull<r_efi::efi::BootServices> = | ||
crate::os::uefi::env::boot_services().expect("can't sleep").cast(); | ||
let _ = unsafe { ((*boot_services.as_ptr()).stall)(dur.as_micros() as usize) }; | ||
} | ||
|
||
pub fn join(self) { | ||
self.0 | ||
} | ||
} | ||
|
||
pub fn available_parallelism() -> io::Result<NonZeroUsize> { | ||
// UEFI is single threaded | ||
Ok(NonZeroUsize::new(1).unwrap()) | ||
} | ||
|
||
pub mod guard { | ||
pub type Guard = !; | ||
pub unsafe fn current() -> Option<Guard> { | ||
None | ||
} | ||
pub unsafe fn init() -> Option<Guard> { | ||
None | ||
} | ||
} |