summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/rtems/posix/pthread.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-17 21:23:37 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-17 21:23:37 +0000
commit309e2f6f8b9cada14afd4aeda4a5e4c7f7386e6a (patch)
treea99632b3ce88dc58957029fc92e19f6e5271b590 /cpukit/posix/include/rtems/posix/pthread.h
parent2008-12-17 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-309e2f6f8b9cada14afd4aeda4a5e4c7f7386e6a.tar.bz2
2008-12-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* posix/include/rtems/posix/barrier.h, posix/include/rtems/posix/cond.h, posix/include/rtems/posix/key.h, posix/include/rtems/posix/mqueue.h, posix/include/rtems/posix/mutex.h, posix/include/rtems/posix/psignal.h, posix/include/rtems/posix/pthread.h, posix/include/rtems/posix/ptimer.h, posix/include/rtems/posix/rwlock.h, posix/include/rtems/posix/semaphore.h, posix/include/rtems/posix/spinlock.h, posix/include/rtems/posix/timer.h, posix/src/cond.c, posix/src/key.c, posix/src/mqueue.c, posix/src/mutex.c, posix/src/pbarrier.c, posix/src/prwlock.c, posix/src/psignal.c, posix/src/pspin.c, posix/src/pthread.c, posix/src/pthreadinitthreads.c, posix/src/ptimer.c, posix/src/semaphore.c, sapi/src/posixapi.c: Convert POSIX manager initialization routines to directly pull parameters from configuration table.
Diffstat (limited to '')
-rw-r--r--cpukit/posix/include/rtems/posix/pthread.h16
1 files changed, 2 insertions, 14 deletions
diff --git a/cpukit/posix/include/rtems/posix/pthread.h b/cpukit/posix/include/rtems/posix/pthread.h
index d0afbadb4e..27156dd886 100644
--- a/cpukit/posix/include/rtems/posix/pthread.h
+++ b/cpukit/posix/include/rtems/posix/pthread.h
@@ -7,7 +7,7 @@
* This include file contains all the private support information for
* POSIX threads.
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -39,14 +39,6 @@ extern "C" {
POSIX_EXTERN Objects_Information _POSIX_Threads_Information;
-/*
- * These are used to manage the user initialization threads.
- */
-
-POSIX_EXTERN posix_initialization_threads_table
- *_POSIX_Threads_User_initialization_threads;
-POSIX_EXTERN uint32_t _POSIX_Threads_Number_of_initialization_threads;
-
extern const pthread_attr_t _POSIX_Threads_Default_attributes;
/**
@@ -66,11 +58,7 @@ extern void (*_POSIX_Threads_Initialize_user_threads_p)(void);
* This routine performs the initialization necessary for this manager.
*/
-void _POSIX_Threads_Manager_initialization(
- uint32_t maximum_pthreads,
- uint32_t number_of_initialization_threads,
- posix_initialization_threads_table *user_threads
-);
+void _POSIX_Threads_Manager_initialization(void);
/*
* _POSIX_Threads_Allocate