From 03b900d3ed120ea919ea3eded7edbece3488cff3 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 18 Feb 2016 08:36:26 +0100 Subject: score: Replace watchdog handler implementation Use a red-black tree instead of delta chains. Close #2344. Update #2554. Update #2555. Close #2606. --- cpukit/posix/include/rtems/posix/threadsup.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cpukit/posix/include/rtems/posix/threadsup.h') diff --git a/cpukit/posix/include/rtems/posix/threadsup.h b/cpukit/posix/include/rtems/posix/threadsup.h index 55db35ddbd..7cd235409c 100644 --- a/cpukit/posix/include/rtems/posix/threadsup.h +++ b/cpukit/posix/include/rtems/posix/threadsup.h @@ -42,6 +42,8 @@ extern "C" { * each thread in a system with POSIX configured. */ typedef struct { + /** Back pointer to thread of this POSIX API control. */ + Thread_Control *thread; /** This is the POSIX threads attribute set. */ pthread_attr_t Attributes; /** This indicates whether the thread is attached or detached. */ -- cgit v1.2.3