diff options
author | Jerry Jelinek <jerry.jelinek@joyent.com> | 2015-06-15 20:09:10 +0000 |
---|---|---|
committer | Jerry Jelinek <jerry.jelinek@joyent.com> | 2015-06-15 20:09:10 +0000 |
commit | 83b20b0e7fcfb37f08095fad70d955aece09b8f4 (patch) | |
tree | 33219e80479c1f1ed7669e47eea9f04f202d1249 /usr/src/uts/common/sys/thread.h | |
parent | b6b487396033090d1de5616ac688feb1734b7204 (diff) | |
download | illumos-joyent-83b20b0e7fcfb37f08095fad70d955aece09b8f4.tar.gz |
OS-4406 native signalfd support
Diffstat (limited to 'usr/src/uts/common/sys/thread.h')
-rw-r--r-- | usr/src/uts/common/sys/thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/uts/common/sys/thread.h b/usr/src/uts/common/sys/thread.h index 41ea2331df..53deb90e23 100644 --- a/usr/src/uts/common/sys/thread.h +++ b/usr/src/uts/common/sys/thread.h @@ -170,7 +170,7 @@ typedef struct _kthread { k_sigset_t t_sig; /* signals pending to this process */ k_sigset_t t_extsig; /* signals sent from another contract */ k_sigset_t t_hold; /* hold signal bit mask */ - k_sigset_t t_sigwait; /* sigtimedwait() is accepting these */ + k_sigset_t t_sigwait; /* sigtimedwait/sigfd accepting these */ struct _kthread *t_forw; /* process's forward thread link */ struct _kthread *t_back; /* process's backward thread link */ struct _kthread *t_thlink; /* tid (lwpid) lookup hash link */ |