diff options
author | raf <none@none> | 2005-10-27 13:18:49 -0700 |
---|---|---|
committer | raf <none@none> | 2005-10-27 13:18:49 -0700 |
commit | c4978b504e6a263bf13dca95069817a5878f6a62 (patch) | |
tree | 44b346beb2a156e83b3713f1524773be301a9e19 /usr/src/uts/common/sys/thread.h | |
parent | c7d4aa56cc495a059b9b260f23c1b720c3557d3a (diff) | |
download | illumos-joyent-c4978b504e6a263bf13dca95069817a5878f6a62.tar.gz |
6342194 fix for 6260557 broke forkall()
Diffstat (limited to 'usr/src/uts/common/sys/thread.h')
-rw-r--r-- | usr/src/uts/common/sys/thread.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr/src/uts/common/sys/thread.h b/usr/src/uts/common/sys/thread.h index 805812e8f0..bf60447de0 100644 --- a/usr/src/uts/common/sys/thread.h +++ b/usr/src/uts/common/sys/thread.h @@ -350,6 +350,7 @@ typedef struct _kthread { #define T_WAKEABLE 0x0002 /* thread is blocked, signals enabled */ #define T_TOMASK 0x0004 /* use lwp_sigoldmask on return from signal */ #define T_TALLOCSTK 0x0008 /* thread structure allocated from stk */ +#define T_FORKALL 0x0010 /* thread was cloned by forkall() */ #define T_WOULDBLOCK 0x0020 /* for lockfs */ #define T_DONTBLOCK 0x0040 /* for lockfs */ #define T_DONTPEND 0x0080 /* for lockfs */ |