summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-09-22 12:01:49 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-09-23 10:46:36 +0200
commitdadd7cd2fdc266d4f7fae99d445fc25a410a8b6f (patch)
treedd69c1bbc32eadb9e6b321fdfcdefc4e383bc3bb
parentscore: Critical fix for _Thread_queue_Dequeue() (diff)
downloadrtems-dadd7cd2fdc266d4f7fae99d445fc25a410a8b6f.tar.bz2
score: Delete Thread_Wait_information::Block2n
This field is no longer used.
-rw-r--r--cpukit/score/include/rtems/score/thread.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/cpukit/score/include/rtems/score/thread.h b/cpukit/score/include/rtems/score/thread.h
index be357895dd..456df35686 100644
--- a/cpukit/score/include/rtems/score/thread.h
+++ b/cpukit/score/include/rtems/score/thread.h
@@ -286,10 +286,6 @@ typedef struct {
*/
uint32_t return_code;
- /** This field is the chain header for the second through Nth tasks
- * of the same priority blocked waiting on the same object.
- */
- Chain_Control Block2n;
/** This field points to the thread queue on which this thread is blocked. */
Thread_queue_Control *queue;
} Thread_Wait_information;