mirror of
https://github.com/embassy-rs/embassy.git
synced 2025-09-29 05:11:31 +00:00
add get/set for task name
This commit is contained in:
parent
05d52decb2
commit
61f0f889a0
@ -151,6 +151,21 @@ impl TaskRef {
|
||||
pub fn as_id(self) -> u32 {
|
||||
self.ptr.as_ptr() as u32
|
||||
}
|
||||
|
||||
/// Get the name for a task
|
||||
#[cfg(feature = "trace")]
|
||||
pub fn name(&self) -> Option<&'static str> {
|
||||
self.header().name
|
||||
}
|
||||
|
||||
/// Set the name for a task
|
||||
#[cfg(feature = "trace")]
|
||||
pub fn set_name(&self, name: Option<&'static str>) {
|
||||
unsafe {
|
||||
let header_ptr = self.ptr.as_ptr() as *mut TaskHeader;
|
||||
(*header_ptr).name = name;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Raw storage in which a task can be spawned.
|
||||
|
Loading…
x
Reference in New Issue
Block a user