summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/include/rtems/posix/config.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-02 15:26:46 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-02 15:26:46 +0000
commitf2422aa069243bc26e5bd4909d81793265fcb20e (patch)
treebe75532ede6452308c1975cf21f0fc3ff737026f /c/src/exec/posix/include/rtems/posix/config.h
parentBacked out change that increased the minimum stack size since it (diff)
downloadrtems-f2422aa069243bc26e5bd4909d81793265fcb20e.tar.bz2
Added message queues and semaphores.
Diffstat (limited to '')
-rw-r--r--c/src/exec/posix/include/rtems/posix/config.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/c/src/exec/posix/include/rtems/posix/config.h b/c/src/exec/posix/include/rtems/posix/config.h
index 2edb8a1909..732d1bc685 100644
--- a/c/src/exec/posix/include/rtems/posix/config.h
+++ b/c/src/exec/posix/include/rtems/posix/config.h
@@ -34,7 +34,7 @@ extern "C" {
/*
* For now, we are only allowing the user to specify the entry point
- * for posix initialization threads.
+ * and stack size for POSIX initialization threads.
*/
typedef struct {
@@ -49,6 +49,8 @@ typedef struct {
int maximum_keys;
int maximum_timers;
int maximum_queued_signals;
+ int maximum_message_queues;
+ int maximum_semaphores;
int number_of_initialization_threads;
posix_initialization_threads_table *User_initialization_threads_table;
} posix_api_configuration_table;