diff options
Diffstat (limited to 'sys/sys/proc.h')
| -rw-r--r-- | sys/sys/proc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h index 4c2eead9f775..65b47f287e19 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -52,6 +52,7 @@ #include <sys/time.h> /* For structs itimerval, timeval. */ #endif #include <sys/ucred.h> +#include <sys/event.h> /* For struct klist */ /* * One structure allocated per session. @@ -205,6 +206,7 @@ struct proc { sigset_t p_oldsigmask; /* saved mask from before sigpause */ int p_sig; /* for core dump/debugger XXX */ u_long p_code; /* for core dump/debugger XXX */ + struct klist p_klist; /* knotes attached to this process */ /* End area that is zeroed on creation. */ #define p_endzero p_startcopy |
