diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-08-27 00:16:26 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-08-27 00:16:26 +0000 |
| commit | 97d2a6ec5ca8ace8daed29c8c69aab9595147b3a (patch) | |
| tree | 8f67645f080416576b9356dfc4385b8181eeb152 /apps/plugins | |
| parent | 73f057be6fcb849d5379073267e21e9526576ccd (diff) | |
| download | rockbox-97d2a6ec5ca8ace8daed29c8c69aab9595147b3a.zip rockbox-97d2a6ec5ca8ace8daed29c8c69aab9595147b3a.tar.gz rockbox-97d2a6ec5ca8ace8daed29c8c69aab9595147b3a.tar.bz2 rockbox-97d2a6ec5ca8ace8daed29c8c69aab9595147b3a.tar.xz | |
Revert "Introduce a small api for loading code (codecs,plugins) from disk/memory."
I don't understand the build error at all, plugin_bss_start is clearly defined in plugin.lds
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27901 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/plugin_crt0.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/apps/plugins/plugin_crt0.c b/apps/plugins/plugin_crt0.c index e34124c..536ecca 100644 --- a/apps/plugins/plugin_crt0.c +++ b/apps/plugins/plugin_crt0.c @@ -32,8 +32,6 @@ PLUGIN_HEADER #define EXIT_MAGIC 0x0CDEBABE extern enum plugin_status plugin_start(const void*); -extern unsigned char plugin_bss_start[]; -extern unsigned char plugin_end_addr[]; static jmp_buf __exit_env; /* only 1 atexit handler for now, chain in the exit handler if you need more */ @@ -63,10 +61,6 @@ enum plugin_status plugin__start(const void *param) int exit_ret; enum plugin_status ret; - /* zero out the bss section */ -#if (CONFIG_PLATFORM & PLATFORM_NATIVE) - rb->memset(plugin_bss_start, 0, plugin_end_addr - plugin_bss_start); -#endif /* we come back here if exit() was called or the plugin returned normally */ exit_ret = setjmp(__exit_env); if (exit_ret == 0) |