summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-15 19:22:26 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-15 19:22:26 +0000
commit19d2b5a469f9967894055581a4a640c6167cdc73 (patch)
tree35842fa94d4b7673e973de88d58be323c29f1ed9 /doc
parent2008-12-15 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-19d2b5a469f9967894055581a4a640c6167cdc73.tar.bz2
2008-12-15 Joel Sherrill <joel.sherrill@oarcorp.com>
* user/init.t: Eliminate pointers to API configuration tables in the main configuration table. Reference the main configuration table and the API configuration tables directly using the confdefs.h version rather than obtaining a pointer to it. This eliminated some variables, a potential fatal error, some unnecessary default configuration structures. Overall, about a 4.5% reduction in the code size for minimum and hello on the SPARC.
Diffstat (limited to 'doc')
-rw-r--r--doc/ChangeLog10
-rw-r--r--doc/user/init.t4
2 files changed, 11 insertions, 3 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 63540a1b81..80cc5b0ea7 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,13 @@
+2008-12-15 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * user/init.t: Eliminate pointers to API configuration tables in the
+ main configuration table. Reference the main configuration table and
+ the API configuration tables directly using the confdefs.h version
+ rather than obtaining a pointer to it. This eliminated some
+ variables, a potential fatal error, some unnecessary default
+ configuration structures. Overall, about a 4.5% reduction in the code
+ size for minimum and hello on the SPARC.
+
2008-12-14 Joel Sherrill <joel.sherrill@oarcorp.com>
* user/conf.t, user/region.t: Change sizes of heap/region and allocated
diff --git a/doc/user/init.t b/doc/user/init.t
index 5cb7015aa5..ee23fb0f58 100644
--- a/doc/user/init.t
+++ b/doc/user/init.t
@@ -211,9 +211,7 @@ constants, usage, and status codes.
@ifset is-C
@findex rtems_initialize_data_structures
@example
-void rtems_initialize_data_structures(
- rtems_configuration_table *configuration_table
-);
+void rtems_initialize_data_structures(void);
@end example
@end ifset