summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/killinfo.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-06-24 11:05:39 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-07-23 08:00:19 +0200
commite2735012331e7347a779888365daa3605c71cd5e (patch)
treea573ae6f29fdb58205e0991d7c3b201a45163d93 /cpukit/posix/src/killinfo.c
parentbsps/arm: Update due to API changes (diff)
downloadrtems-e2735012331e7347a779888365daa3605c71cd5e.tar.bz2
score: Introduce Thread_queue_Queue
Separate the thread queue heads and lock from the operations. This enables the support for light weight objects which only support one queuing discipline.
Diffstat (limited to 'cpukit/posix/src/killinfo.c')
-rw-r--r--cpukit/posix/src/killinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/posix/src/killinfo.c b/cpukit/posix/src/killinfo.c
index c8c59d6096..d08e68684b 100644
--- a/cpukit/posix/src/killinfo.c
+++ b/cpukit/posix/src/killinfo.c
@@ -140,7 +140,7 @@ int killinfo(
/* XXX violation of visibility -- need to define thread queue support */
- the_chain = &_POSIX_signals_Wait_queue.Queues.Fifo;
+ the_chain = &_POSIX_signals_Wait_queue.Queue.Heads.Fifo;
for ( the_node = _Chain_First( the_chain );
!_Chain_Is_tail( the_chain, the_node ) ;