Searched defs:pid (Results 1 – 14 of 14) sorted by relevance
/DragonOS-0.1.2/kernel/src/libs/sys/ |
D | wait.c | 12 pid_t waitpid(pid_t pid, int *stat_loc, int options) in waitpid()
|
/DragonOS-0.1.2/kernel/src/process/ |
D | mod.rs | 1 pub mod pid; module
|
D | kthread.c | 193 pid_t pid = kernel_thread(kthread, create, CLONE_FS | CLONE_SIGNAL); in __create_kthread() local
|
D | process.c | 651 struct process_control_block *process_find_pcb_by_pid(pid_t pid) in process_find_pcb_by_pid()
|
D | proc-types.h | 104 long pid; member
|
/DragonOS-0.1.2/user/libs/libc/src/sys/ |
D | wait.c | 23 pid_t waitpid(pid_t pid, int *stat_loc, int options) in waitpid()
|
/DragonOS-0.1.2/kernel/src/driver/usb/xhci/ |
D | internal.h | 57 #define XHCI_PORT_IS_USB2(cid, pid) ((xhci_hc[cid].ports[pid].flags & XHCI_PROTOCOL_INFO) == XHCI_P… argument 58 #define XHCI_PORT_IS_USB3(cid, pid) ((xhci_hc[cid].ports[pid].flags & XHCI_PROTOCOL_INFO) == XHCI_P… argument 60 #define XHCI_PORT_IS_USB2_HSO(cid, pid) ((xhci_hc[cid].ports[pid].flags & XHCI_PROTOCOL_HSO) == XHC… argument 61 #define XHCI_PORT_HAS_PAIR(cid, pid) ((xhci_hc[cid].ports[pid].flags & XHCI_PROTOCOL_HAS_PAIR) == X… argument 62 #define XHCI_PORT_IS_ACTIVE(cid, pid) ((xhci_hc[cid].ports[pid].flags & XHCI_PROTOCOL_ACTIVE) == XH… argument
|
/DragonOS-0.1.2/user/apps/shell/ |
D | cmd_test.c | 11 pid_t pid; in shell_pipe_test() local
|
D | cmd.c | 476 pid_t pid = fork(); in shell_cmd_exec() local
|
/DragonOS-0.1.2/kernel/src/filesystem/procfs/ |
D | procfs.h | 33 long pid; member
|
D | procfs.c | 446 int64_t procfs_register_pid(long pid) in procfs_register_pid() 476 static int64_t proc_create_file(const char *path, mode_t type, long pid) in proc_create_file()
|
/DragonOS-0.1.2/kernel/src/ktest/ |
D | test-mutex.c | 55 pid_t pid = kernel_thread(ktest_mutex_case1_pid1, 0, 0); in ktest_mutex_case1() local
|
/DragonOS-0.1.2/kernel/src/syscall/ |
D | syscall.c | 499 uint64_t pid = regs->r8; in sys_wait4() local
|
/DragonOS-0.1.2/kernel/src/ipc/ |
D | signal.rs | 65 let pid: pid_t = regs.r8 as pid_t; in sys_kill() localVariable
|