diff options
author | markj <markj@FreeBSD.org> | 2014-08-09 15:00:03 +0000 |
---|---|---|
committer | markj <markj@FreeBSD.org> | 2014-08-09 15:00:03 +0000 |
commit | 4eeea9f0c4d9eb8c73fe7eb5297204da53bcfe8a (patch) | |
tree | d7933a38f02506f07e209f08385e819e23df9b4c /lib/libproc/libproc.h | |
parent | 57990c0ba46d6aa5c30d4e35eaea0bf3ee59ec96 (diff) | |
download | FreeBSD-src-4eeea9f0c4d9eb8c73fe7eb5297204da53bcfe8a.zip FreeBSD-src-4eeea9f0c4d9eb8c73fe7eb5297204da53bcfe8a.tar.gz |
MFC r265308:
If the traced process stops because it received a signal, libproc needs
to ensure that the signal is forwarded when proc_continue() is called.
Diffstat (limited to 'lib/libproc/libproc.h')
-rw-r--r-- | lib/libproc/libproc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libproc/libproc.h b/lib/libproc/libproc.h index d80e88c..be77e4b 100644 --- a/lib/libproc/libproc.h +++ b/lib/libproc/libproc.h @@ -102,6 +102,7 @@ typedef struct lwpstatus { #define PR_FAULTED 2 #define PR_SYSENTRY 3 #define PR_SYSEXIT 4 +#define PR_SIGNALLED 5 int pr_what; #define FLTBPT -1 } lwpstatus_t; |