From 383cf42217d05a9cf19c6d081d50f92b2262a308 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 22 Apr 2015 11:15:46 +0200 Subject: score: More thread queue operations Move thread queue discipline specific operations into Thread_queue_Operations. Use a separate node in the thread control block for the thread queue to make it independent of the scheduler data structures. Update #2273. --- cpukit/posix/src/killinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/posix/src/killinfo.c') diff --git a/cpukit/posix/src/killinfo.c b/cpukit/posix/src/killinfo.c index 5d3dded53f..c8c59d6096 100644 --- a/cpukit/posix/src/killinfo.c +++ b/cpukit/posix/src/killinfo.c @@ -146,7 +146,7 @@ int killinfo( !_Chain_Is_tail( the_chain, the_node ) ; the_node = the_node->next ) { - the_thread = (Thread_Control *)the_node; + the_thread = THREAD_CHAIN_NODE_TO_THREAD( the_node ); api = the_thread->API_Extensions[ THREAD_API_POSIX ]; #if defined(DEBUG_SIGNAL_PROCESSING) -- cgit v1.2.3