1
0
Fork 0
forked from len0rd/rockbox

Include divide-by-zero handling within plugins and codecs for ARM processors.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19834 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2009-01-24 03:47:09 +00:00
parent ef8413eb4f
commit b0befadad1
10 changed files with 65 additions and 6 deletions

View file

@ -126,7 +126,7 @@ void* plugin_get_buffer(size_t *buffer_size);
#define PLUGIN_MAGIC 0x526F634B /* RocK */
/* increase this every time the api struct changes */
#define PLUGIN_API_VERSION 137
#define PLUGIN_API_VERSION 138
/* update this to latest version if a change to the api struct breaks
backwards compatibility (and please take the opportunity to sort in any
@ -782,6 +782,9 @@ struct plugin_api {
const char *appsversion;
/* new stuff at the end, sort into place next time
the API gets incompatible */
#ifdef CPU_ARM
void (*__div0)(void);
#endif
};
/* plugin header */