summaryrefslogtreecommitdiffstats
path: root/c/src/exec/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-04-02 23:42:20 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-04-02 23:42:20 +0000
commit4b2d7c607c5c78666d217c91da10a7db402dca21 (patch)
treebf565bbf7bc93ecee5e882790def0c03593b9ef0 /c/src/exec/rtems
parent2002-03-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-4b2d7c607c5c78666d217c91da10a7db402dca21.tar.bz2
2001-03-29 Joel Sherrill <joel@OARcorp.com>
* Per PR126, configuration structures now match docs. * include/rtems/rtems/config.h: Use public data types.
Diffstat (limited to '')
-rw-r--r--c/src/exec/rtems/ChangeLog5
-rw-r--r--c/src/exec/rtems/include/rtems/rtems/config.h18
2 files changed, 14 insertions, 9 deletions
diff --git a/c/src/exec/rtems/ChangeLog b/c/src/exec/rtems/ChangeLog
index 2a5f9b705a..f004e00116 100644
--- a/c/src/exec/rtems/ChangeLog
+++ b/c/src/exec/rtems/ChangeLog
@@ -1,5 +1,10 @@
2001-03-29 Joel Sherrill <joel@OARcorp.com>
+ * Per PR126, configuration structures now match docs.
+ * include/rtems/rtems/config.h: Use public data types.
+
+2001-03-29 Joel Sherrill <joel@OARcorp.com>
+
* Per PR147 addressed problems when reseting and inserting a timer
into a timer chain that did not honor time passage since the last
time the timer server was scheduled and the new insertion.
diff --git a/c/src/exec/rtems/include/rtems/rtems/config.h b/c/src/exec/rtems/include/rtems/rtems/config.h
index 4905d06c22..85c7f31ffc 100644
--- a/c/src/exec/rtems/include/rtems/rtems/config.h
+++ b/c/src/exec/rtems/include/rtems/rtems/config.h
@@ -33,15 +33,15 @@ extern "C" {
*/
typedef struct {
- unsigned32 maximum_tasks;
- unsigned32 maximum_timers;
- unsigned32 maximum_semaphores;
- unsigned32 maximum_message_queues;
- unsigned32 maximum_partitions;
- unsigned32 maximum_regions;
- unsigned32 maximum_ports;
- unsigned32 maximum_periods;
- unsigned32 number_of_initialization_tasks;
+ rtems_unsigned32 maximum_tasks;
+ rtems_unsigned32 maximum_timers;
+ rtems_unsigned32 maximum_semaphores;
+ rtems_unsigned32 maximum_message_queues;
+ rtems_unsigned32 maximum_partitions;
+ rtems_unsigned32 maximum_regions;
+ rtems_unsigned32 maximum_ports;
+ rtems_unsigned32 maximum_periods;
+ rtems_unsigned32 number_of_initialization_tasks;
rtems_initialization_tasks_table *User_initialization_tasks_table;
} rtems_api_configuration_table;