#[repr(C)]pub struct k_work_queue_config {
pub name: *const i8,
pub no_yield: bool,
pub essential: bool,
}
Expand description
@brief A structure holding optional configuration items for a work queue.
This structure, and values it references, are not retained by k_work_queue_start().
Fields§
§name: *const i8
The name to be given to the work queue thread.
If left null the thread will not have a name.
no_yield: bool
Control whether the work queue thread should yield between items.
Yielding between items helps guarantee the work queue thread does not starve other threads, including cooperative ones released by a work item. This is the default behavior.
Set this to @c true to prevent the work queue thread from yielding between items. This may be appropriate when a sequence of items should complete without yielding control.
essential: bool
Control whether the work queue thread should be marked as essential thread.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for k_work_queue_config
impl RefUnwindSafe for k_work_queue_config
impl !Send for k_work_queue_config
impl !Sync for k_work_queue_config
impl Unpin for k_work_queue_config
impl UnwindSafe for k_work_queue_config
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more