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;