diff options
author | Thomas Martitz <kugel@rockbox.org> | 2010-03-03 23:20:32 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2010-03-03 23:20:32 +0000 |
commit | f8edc325896c9c24d7f32f4861a0b0d2a8b9f4cd (patch) | |
tree | b2682307d01fffb54dd68e54b8f2e2986fe6bcc6 /apps/gui/statusbar-skinned.h | |
parent | e479853f1542616dab56817c8f5326364b663c7c (diff) |
FS#10756 - Free unused init code
Introduce a new .init section for initialisation code, so that it can be copied to an area which is later overwritten before calling. The stack/bss can then overwrite that code, effectively freeing the code size that the initialisation routines need. Gives a few kB ram usage back.
Only implemented for PP and as3525 so far. More targets could be added, as well as more functions.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25013 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/statusbar-skinned.h')
-rw-r--r-- | apps/gui/statusbar-skinned.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/statusbar-skinned.h b/apps/gui/statusbar-skinned.h index 35bde0bcc1..7558d5a6f8 100644 --- a/apps/gui/statusbar-skinned.h +++ b/apps/gui/statusbar-skinned.h @@ -35,7 +35,7 @@ void sb_skin_data_load(enum screen_type screen, const char *buf, bool isfile); void sb_create_from_settings(enum screen_type screen); -void sb_skin_init(void); +void sb_skin_init(void) INIT_ATTR; struct viewport *sb_skin_get_info_vp(enum screen_type screen); void sb_skin_update(enum screen_type screen, bool force); |