From 163a1047c269a95f544c85b0f5096c708a8de4e6 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 5 Feb 2008 22:35:08 +0000 Subject: 2008-02-05 Joel Sherrill * posix/Makefile.am: Remove these. They were proposed but never standardized. * posix/src/pthreadgetcputime.c, posix/src/pthreadsetcputime.c: Removed. --- cpukit/ChangeLog | 6 ++++++ cpukit/posix/Makefile.am | 4 ++-- cpukit/posix/src/pthreadgetcputime.c | 31 ----------------------------- cpukit/posix/src/pthreadsetcputime.c | 38 ------------------------------------ 4 files changed, 8 insertions(+), 71 deletions(-) delete mode 100644 cpukit/posix/src/pthreadgetcputime.c delete mode 100644 cpukit/posix/src/pthreadsetcputime.c 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 + + * 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 * 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 -#include - -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 -#include - -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; - } -} -- cgit v1.2.3