summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2006-11-15 15:43:42 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2006-11-15 15:43:42 +0000
commitcdda98fa4ee55a5038c4ef00c9b70655584d8094 (patch)
tree0df797d8087ce7e7a67e4e647ef2b0754ac886bb
parent2006-11-15 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-cdda98fa4ee55a5038c4ef00c9b70655584d8094.tar.bz2
2006-11-15 Joel Sherrill <joel.sherrill@oarcorp.com>
* sapi/include/confdefs.h: Enable memory for new objects.
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/sapi/include/confdefs.h8
2 files changed, 4 insertions, 8 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index afc4011568..a2babf8e48 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,9 @@
2006-11-15 Joel Sherrill <joel.sherrill@oarcorp.com>
+ * sapi/include/confdefs.h: Enable memory for new objects.
+
+2006-11-15 Joel Sherrill <joel.sherrill@oarcorp.com>
+
* posix/Makefile.am: Add file missed in previous commit.
* posix/src/posixtimespecabsolutetimeout.c: New file.
diff --git a/cpukit/sapi/include/confdefs.h b/cpukit/sapi/include/confdefs.h
index 61a9590436..9e1f4dab94 100644
--- a/cpukit/sapi/include/confdefs.h
+++ b/cpukit/sapi/include/confdefs.h
@@ -705,11 +705,6 @@ posix_initialization_threads_table POSIX_Initialization_threads[] = {
CONFIGURE_OBJECT_TABLE_STUFF + \
NAME_MAX ) )
-#define CONFIGURE_MEMORY_FOR_POSIX_BARRIERS(_barriers) 0
-#define CONFIGURE_MEMORY_FOR_POSIX_SPINLOCKS(_spinlocks) 0
-#define CONFIGURE_MEMORY_FOR_POSIX_RWLOCKS(_rwlocks) 0
-
-#if 0
#define CONFIGURE_MEMORY_FOR_POSIX_BARRIERS(_barriers) \
((_barriers) * \
( sizeof( POSIX_Barrier_Control) + \
@@ -727,7 +722,6 @@ posix_initialization_threads_table POSIX_Initialization_threads[] = {
( sizeof( POSIX_RWLock_Control) + \
CONFIGURE_OBJECT_TABLE_STUFF + \
NAME_MAX ) )
-#endif
#define CONFIGURE_MEMORY_FOR_POSIX \
( \
@@ -1157,11 +1151,9 @@ posix_api_configuration_table Configuration_POSIX_API = {
CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS,
CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES,
CONFIGURE_MAXIMUM_POSIX_SEMAPHORES,
-#if 0
CONFIGURE_MAXIMUM_POSIX_BARRIERS,
CONFIGURE_MAXIMUM_POSIX_RWLOCKS,
CONFIGURE_MAXIMUM_POSIX_SPINLOCKS,
-#endif
CONFIGURE_POSIX_INIT_THREAD_TABLE_SIZE,
CONFIGURE_POSIX_INIT_THREAD_TABLE_NAME
};