summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/condattrgetclock.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/condattrgetclock.c')
-rw-r--r--cpukit/posix/src/condattrgetclock.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/cpukit/posix/src/condattrgetclock.c b/cpukit/posix/src/condattrgetclock.c
new file mode 100644
index 0000000000..4ff455d1f3
--- /dev/null
+++ b/cpukit/posix/src/condattrgetclock.c
@@ -0,0 +1,39 @@
+/**
+ * @file
+ *
+ * @brief Get the Clock Condition Variable Attributes
+ * @ingroup POSIXAPI
+ */
+
+/*
+ * COPYRIGHT (c) 2016
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ */
+
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <pthread.h>
+#include <errno.h>
+
+int pthread_condattr_getclock(
+ const pthread_condattr_t *__restrict attr,
+ clockid_t *__restrict clock
+)
+{
+ if ( attr == NULL ) {
+ return EINVAL;
+ }
+
+ if ( clock == NULL ) {
+ return EINVAL;
+ }
+
+ *clock = attr->clock;
+ return 0;
+}