summaryrefslogtreecommitdiff
path: root/cpukit/posix/include/rtems/posix/cond.h
diff options
context:
space:
mode:
authorGedare Bloom <gedare@rtems.org>2016-06-23 16:55:38 -0400
committerGedare Bloom <gedare@rtems.org>2016-06-23 16:59:02 -0400
commit195a75f026f927d03fbb746963df89415f0f1470 (patch)
tree1ded10c205c5ab96fb1bfbd50bff604ef892fc93 /cpukit/posix/include/rtems/posix/cond.h
parente0e396d98af44583be031ab1b06e1ee4a019b6af (diff)
posix: cond_timedwait remember and use clock from condattrclock2
updates #2745
Diffstat (limited to 'cpukit/posix/include/rtems/posix/cond.h')
-rw-r--r--cpukit/posix/include/rtems/posix/cond.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cpukit/posix/include/rtems/posix/cond.h b/cpukit/posix/include/rtems/posix/cond.h
index 4fa7de7525..bbb80ef362 100644
--- a/cpukit/posix/include/rtems/posix/cond.h
+++ b/cpukit/posix/include/rtems/posix/cond.h
@@ -44,6 +44,7 @@ typedef struct {
Objects_Control Object;
Thread_queue_Control Wait_queue;
pthread_mutex_t mutex;
+ clockid_t clock;
} POSIX_Condition_variables_Control;
#ifdef __cplusplus