Home
last modified time | relevance | path

Searched defs:Task (Results 1 – 2 of 2) sorted by relevance

/linux/rust/kernel/
H A Dtask.rs96 pub struct Task(pub(crate) Opaque<bindings::task_struct>); struct
102 unsafe impl Send for Task {} implementation
107 unsafe impl Sync for Task {} implementation
142 fn deref(&self) -> &Task { in deref()
156 impl Task { implementation
206 pub fn group_leader(&self) -> &Task { in group_leader()
343 unsafe impl crate::types::AlwaysRefCounted for Task { implementation
/linux/tools/perf/scripts/python/
H A Dtask-analyzer.py531 class Task(object): class