diff options
author | Bryan Cantrill <bryan@joyent.com> | 2013-03-11 17:58:53 +0000 |
---|---|---|
committer | Bryan Cantrill <bryan@joyent.com> | 2013-03-11 17:58:53 +0000 |
commit | 077880e88374f944d97873eb2b40105b7a775345 (patch) | |
tree | dfce1ef31dd564ff1f8f4d98647194623e532f36 /usr/src/uts/common/sys/proc.h | |
parent | f92ce8dbf9f6816354b4fcf332853620b6c08e06 (diff) | |
download | illumos-joyent-077880e88374f944d97873eb2b40105b7a775345.tar.gz |
OS-1764 core dumping is abysmally slow
Reviewed by: Keith Wesolowski <keith.wesolowski@joyent.com>
Reviewed by: Joshua M. Clulow <josh@sysmgr.org>
Diffstat (limited to 'usr/src/uts/common/sys/proc.h')
-rw-r--r-- | usr/src/uts/common/sys/proc.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/usr/src/uts/common/sys/proc.h b/usr/src/uts/common/sys/proc.h index 762e7149b2..f1a2fc5485 100644 --- a/usr/src/uts/common/sys/proc.h +++ b/usr/src/uts/common/sys/proc.h @@ -574,6 +574,12 @@ typedef enum { LWP_STAT_MSGSND } lwp_stat_id_t; +typedef struct prkillinfo { + int32_t prk_error; /* errno */ + int32_t prk_pad; /* pad */ + siginfo_t prk_info; /* siginfo of killing signal */ +} prkillinfo_t; + #ifdef _KERNEL /* user profiling functions */ |