gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:LIST_HEAD 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
72:         LIST_ENTRY(pgrp) pg_hash;      /* Hash chain. */
73:         LIST_HEAD(, process) pg_members;/* Pointer to pgrp members. */
74:         struct session *pg_session;    /* Pointer to session. */
163: LIST_ENTRY(process) ps_sibling; /* List of sibling processes. */ 164: LIST_HEAD(, process) ps_children;/* Pointer to list of children. */ 165:
487: #define PIDHASH(pid) (&pidhashtbl[(pid) & pidhash]) 488: extern LIST_HEAD(pidhashhead, proc) *pidhashtbl; 489: extern u_long pidhash;
491: #define PGRPHASH(pgid) (&pgrphashtbl[(pgid) & pgrphash]) 492: extern LIST_HEAD(pgrphashhead, pgrp) *pgrphashtbl; 493: extern u_long pgrphash;