gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:LIST_ENTRY from t2ex/bsd_source/lib/libc/src_bsd/include/sys/proc.h (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/sys/proc.h - 24.6KB - 595 lines
71: struct  pgrp {
72:         LIST_ENTRY(pgrp) pg_hash;      /* Hash chain. */
73:         LIST_HEAD(, process) pg_members;/* Pointer to pgrp members. */
160: 161: LIST_ENTRY(process) ps_pglist; /* List of processes in pgrp. */ 162: struct process *ps_pptr; /* Pointer to parent process. */ 163: LIST_ENTRY(process) ps_sibling; /* List of sibling processes. */ 164: LIST_HEAD(, process) ps_children;/* Pointer to list of children. */
248: TAILQ_ENTRY(proc) p_runq; 249: LIST_ENTRY(proc) p_list; /* List of all processes. */ 250:
269: pid_t p_pid; /* Process identifier. */ 270: LIST_ENTRY(proc) p_hash; /* Hash chain. */ 271:
444: struct uidinfo { 445: LIST_ENTRY(uidinfo) ui_hash; 446: uid_t ui_uid;