summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/rtems/posix/threadsup.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-14 11:58:12 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-31 08:29:43 +0200
commitfc521e2df6f4948da47ab26b90c4ce1ff56e3c19 (patch)
tree41727c47bd66803dcd9222c0bb835d0668447b4e /cpukit/posix/include/rtems/posix/threadsup.h
parentrtems: Use thread action for signals (diff)
downloadrtems-fc521e2df6f4948da47ab26b90c4ce1ff56e3c19.tar.bz2
posix: Use thread action for signals
Diffstat (limited to 'cpukit/posix/include/rtems/posix/threadsup.h')
-rw-r--r--cpukit/posix/include/rtems/posix/threadsup.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/cpukit/posix/include/rtems/posix/threadsup.h b/cpukit/posix/include/rtems/posix/threadsup.h
index e0b9ff55e9..46903fed98 100644
--- a/cpukit/posix/include/rtems/posix/threadsup.h
+++ b/cpukit/posix/include/rtems/posix/threadsup.h
@@ -68,6 +68,11 @@ typedef struct {
/** This is the set of signals which are currently pending. */
sigset_t signals_pending;
+ /**
+ * @brief Signal post-switch action in case signals are pending.
+ */
+ Thread_Action Signal_action;
+
/*******************************************************************/
/*******************************************************************/
/*************** POSIX Cancelability ***************/