From 401e6e37d7b8f2aa0d82140deefe811dc786fb1c Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 21 May 2007 23:24:31 +0000 Subject: [PATCH] 2007-05-21 Joel Sherrill * rtems/Makefile.am, rtems/include/rtems/rtems/barrier.h, rtems/include/rtems/rtems/dpmem.h, rtems/include/rtems/rtems/event.h, rtems/include/rtems/rtems/message.h, rtems/include/rtems/rtems/part.h, rtems/include/rtems/rtems/ratemon.h, rtems/include/rtems/rtems/region.h, rtems/include/rtems/rtems/sem.h, rtems/include/rtems/rtems/tasks.h, rtems/include/rtems/rtems/timer.h, sapi/Makefile.am, sapi/include/rtems/extension.h: Split Classic API data instantiation into individual files. This reduces the size of the BSS section when an optional manager stub is used. Some tests showed about a 600 byte reduction in BSS size. * rtems/src/taskinitusers.c, sapi/src/rtemsapi.c, rtems/src/tasks.c: Eliminated the variables _RTEMS_tasks_User_initialization_tasks and _RTEMS_tasks_Number_of_initialization_tasks because they were only used in one place after initialized. It was a waste of space. * rtems/src/barrierdata.c, rtems/src/dpmem.c, rtems/src/dpmemdata.c, rtems/src/eventdata.c, rtems/src/msgdata.c, rtems/src/partdata.c, rtems/src/ratemondata.c, rtems/src/regiondata.c, rtems/src/rtemstimerdata.c, rtems/src/semdata.c, rtems/src/taskdata.c, sapi/src/extensiondata.c: New files. --- cpukit/ChangeLog | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index d8431262b8..a1b3e8d538 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,25 @@ +2007-05-21 Joel Sherrill + + * rtems/Makefile.am, rtems/include/rtems/rtems/barrier.h, + rtems/include/rtems/rtems/dpmem.h, rtems/include/rtems/rtems/event.h, + rtems/include/rtems/rtems/message.h, rtems/include/rtems/rtems/part.h, + rtems/include/rtems/rtems/ratemon.h, rtems/include/rtems/rtems/region.h, + rtems/include/rtems/rtems/sem.h, rtems/include/rtems/rtems/tasks.h, + rtems/include/rtems/rtems/timer.h, sapi/Makefile.am, + sapi/include/rtems/extension.h: Split Classic API data instantiation + into individual files. This reduces the size of the BSS section when + an optional manager stub is used. Some tests showed about a 600 byte + reduction in BSS size. + * rtems/src/taskinitusers.c, sapi/src/rtemsapi.c, rtems/src/tasks.c: + Eliminated the variables _RTEMS_tasks_User_initialization_tasks and + _RTEMS_tasks_Number_of_initialization_tasks because they were only + used in one place after initialized. It was a waste of space. + * rtems/src/barrierdata.c, rtems/src/dpmem.c, rtems/src/dpmemdata.c, + rtems/src/eventdata.c, rtems/src/msgdata.c, rtems/src/partdata.c, + rtems/src/ratemondata.c, rtems/src/regiondata.c, + rtems/src/rtemstimerdata.c, rtems/src/semdata.c, rtems/src/taskdata.c, + sapi/src/extensiondata.c: New files. + 2007-05-21 Joel Sherrill * libmisc/Makefile.am, libmisc/cpuuse/README: Split remaining CPU Usage