From 80da8b141c4672ca4380d66094976b6342ed5071 Mon Sep 17 00:00:00 2001 From: Tomasz Malesinski Date: Sun, 26 Nov 2006 18:31:41 +0000 Subject: FS#6357, patch 1: let iramcopy and bss share the same space in codecs and plugins. Currently, in case of plugins using IRAM bss is cleared twice, once in the loader, once in PLUGIN_IRAM_INIT. For codecs, bss is cleared only during codec initialization. Also, removed double variables in codecs storing a pointer to codec_api. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11606 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugin.c | 1 + 1 file changed, 1 insertion(+) (limited to 'apps/plugin.c') diff --git a/apps/plugin.c b/apps/plugin.c index 21930ee..e74e4a7 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -699,6 +699,7 @@ void plugin_iram_init(char *iramstart, char *iramcopy, size_t iram_size, audio_iram_steal(); memcpy(iramstart, iramcopy, iram_size); memset(iedata, 0, iedata_size); + memset(iramcopy, 0, iram_size); } #endif /* IRAM_STEAL */ -- cgit v1.1