summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-02-05 22:35:08 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-02-05 22:35:08 +0000
commit163a1047c269a95f544c85b0f5096c708a8de4e6 (patch)
treee5a41ca51d818209cb18b5b25463b88212562917
parentBump version to 0.10. (diff)
downloadrtems-163a1047c269a95f544c85b0f5096c708a8de4e6.tar.bz2
2008-02-05 Joel Sherrill <joel.sherrill@OARcorp.com>
* posix/Makefile.am: Remove these. They were proposed but never standardized. * posix/src/pthreadgetcputime.c, posix/src/pthreadsetcputime.c: Removed.
-rw-r--r--cpukit/ChangeLog6
-rw-r--r--cpukit/posix/Makefile.am4
-rw-r--r--cpukit/posix/src/pthreadgetcputime.c31
-rw-r--r--cpukit/posix/src/pthreadsetcputime.c38
4 files changed, 8 insertions, 71 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 90a1bfce0c..6c54205598 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,9 @@
+2008-02-05 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * posix/Makefile.am: Remove these. They were proposed but never
+ standardized.
+ * posix/src/pthreadgetcputime.c, posix/src/pthreadsetcputime.c: Removed.
+
2007-12-23 Ralf Corsépius <ralf.corsepius@rtems.org>
* libcsupport/src/sync.c: Make sync() POSIX-compliant.
diff --git a/cpukit/posix/Makefile.am b/cpukit/posix/Makefile.am
index c14dc4a58a..7ed7498b21 100644
--- a/cpukit/posix/Makefile.am
+++ b/cpukit/posix/Makefile.am
@@ -110,8 +110,8 @@ libposix_a_SOURCES += src/mutex.c src/mutexattrdestroy.c \
src/mutexunlock.c
## PTHREAD_C_FILES
-libposix_a_SOURCES += src/pthread.c src/pthreadsetcputime.c \
- src/pthreadgetcputime.c src/pthreadgetcpuclockid.c src/pthreadonce.c \
+libposix_a_SOURCES += src/pthread.c \
+ src/pthreadgetcpuclockid.c src/pthreadonce.c \
src/pthreadequal.c src/pthreadself.c src/pthreadexit.c \
src/pthreaddetach.c src/pthreadjoin.c src/pthreadcreate.c \
src/pthreadattrsetdetachstate.c src/pthreadattrgetdetachstate.c \
diff --git a/cpukit/posix/src/pthreadgetcputime.c b/cpukit/posix/src/pthreadgetcputime.c
deleted file mode 100644
index 7c9bb46c7b..0000000000
--- a/cpukit/posix/src/pthreadgetcputime.c
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * 20.1.7 CPU-time Clock Thread Creation Attribute, P1003.4b/Draft 8, p. 59
- *
- * COPYRIGHT (c) 1989-1999.
- * 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.com/license/LICENSE.
- *
- * $Id$
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <pthread.h>
-#include <errno.h>
-
-int pthread_attr_getcputime(
- pthread_attr_t *attr,
- int *clock_allowed
-)
-{
- if ( !attr || !attr->is_initialized || !clock_allowed )
- return EINVAL;
-
- *clock_allowed = attr->cputime_clock_allowed;
- return 0;
-}
diff --git a/cpukit/posix/src/pthreadsetcputime.c b/cpukit/posix/src/pthreadsetcputime.c
deleted file mode 100644
index 70b9594ab9..0000000000
--- a/cpukit/posix/src/pthreadsetcputime.c
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * 20.1.7 CPU-time Clock Thread Creation Attribute, P1003.4b/Draft 8, p. 59
- *
- * COPYRIGHT (c) 1989-1999.
- * 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.com/license/LICENSE.
- *
- * $Id$
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <pthread.h>
-#include <errno.h>
-
-int pthread_attr_setcputime(
- pthread_attr_t *attr,
- int clock_allowed
-)
-{
- if ( !attr || !attr->is_initialized )
- return EINVAL;
-
- switch ( clock_allowed ) {
- case CLOCK_ENABLED:
- case CLOCK_DISABLED:
- attr->cputime_clock_allowed = clock_allowed;
- return 0;
-
- default:
- return EINVAL;
- }
-}