Home
last modified time | relevance | path

Searched refs:tid (Results 1 – 5 of 5) sorted by relevance

/DragonOS/user/apps/test-for-robustfutex/src/
H A Dmain.rs116 let tid = unsafe { syscall0(gettid).unwrap() as u32 }; in futex_wait() localVariable
117 futexes.set_val(futexes.get_val(offset_futex) | tid, offset_futex); in futex_wait()
369 let tid = unsafe { syscall0(gettid).unwrap() as u32 }; in test02() localVariable
370 futexes.set_val(futexes.get_val(12) | tid, 12); in test02()
387 let tid = unsafe { syscall0(gettid).unwrap() as u32 }; in test02() localVariable
388 futexes.set_val(futexes.get_val(11) | tid, 11); in test02()
/DragonOS/kernel/src/namespaces/
H A Dpid_namespace.rs99 let tid = tid_iter.next().unwrap_or(0); in alloc_pid() localVariable
101 if tid < 1 || tid > INT16_MAX as usize { in alloc_pid()
106 let mut nr = tid; in alloc_pid()
108 if tid == 0 { in alloc_pid()
/DragonOS/docs/kernel/boot/
H A Dbootloader.md34 - [UEFI/Legacy启动 - yujianwu - DragonOS社区](https://bbs.dragonos.org/forum.php?mod=viewthread&tid=46)
/DragonOS/kernel/src/syscall/
H A Dmod.rs897 SYS_GETTID => Self::gettid().map(|tid| tid.into()), in handle()
/DragonOS/kernel/src/include/bindings/
H A Dlinux_bpf.rs1143 pub tid: __u32, field