diff options
author | Jerry Jelinek <jerry.jelinek@joyent.com> | 2015-10-15 16:26:52 -0700 |
---|---|---|
committer | Robert Mustacchi <rm@joyent.com> | 2015-11-16 09:44:54 -0800 |
commit | 3d729aecc03ea6ebb9bd5d56b8dccd24f57daa41 (patch) | |
tree | 7c90a77f5265b35f475932b34c933c63b5664a4e /usr/src/uts/common/sys/thread.h | |
parent | f9eb9fdf196b6ed476e4ffc69cecd8b0da3cb7e7 (diff) | |
download | illumos-gate-3d729aecc03ea6ebb9bd5d56b8dccd24f57daa41.tar.gz |
6342 want signalfd support
Reviewed by: Patrick Mooney <patrick.mooney@joyent.com>
Reviewed by: Robert Mustacchi <rm@joyent.com>
Reviewed by: Igor Kozhukhov <ikozhukhov@gmail.com>
Reviewed by: Garrett D'Amore <garrett@damore.org>
Approved by: Dan McDonald <danmcd@omniti.com>
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 188230d61e..fd6a60c65e 100644 --- a/usr/src/uts/common/sys/thread.h +++ b/usr/src/uts/common/sys/thread.h @@ -164,7 +164,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 */ |