1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Tomasz Malesinski 2006-11-26 18:31:41 +00:00
parent 8ef3c8a342
commit 80da8b141c
33 changed files with 190 additions and 437 deletions

View file

@ -61,9 +61,9 @@
#if defined(DEBUG) || defined(SIMULATOR)
#undef DEBUGF
#define DEBUGF rb->debugf
#define DEBUGF ci->debugf
#undef LDEBUGF
#define LDEBUGF rb->debugf
#define LDEBUGF ci->debugf
#else
#define DEBUGF(...)
#define LDEBUGF(...)
@ -71,7 +71,7 @@
#ifdef ROCKBOX_HAS_LOGF
#undef LOGF
#define LOGF rb->logf
#define LOGF ci->logf
#else
#define LOGF(...)
#endif