diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2009-06-29 14:29:46 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2009-06-29 14:29:46 +0000 |
| commit | 89ccd5c145e45ad541a02f38e2ad07fb916f7135 (patch) | |
| tree | 5fc32e78d793022246e3893f7c420f52d624c96e /docs/PLUGIN_API.new | |
| parent | b955dff268005d3d55ee3f38af0875718ab6021a (diff) | |
| download | rockbox-89ccd5c145e45ad541a02f38e2ad07fb916f7135.zip rockbox-89ccd5c145e45ad541a02f38e2ad07fb916f7135.tar.gz rockbox-89ccd5c145e45ad541a02f38e2ad07fb916f7135.tar.bz2 rockbox-89ccd5c145e45ad541a02f38e2ad07fb916f7135.tar.xz | |
Remove int_prio argument from timer_register, and move the only use for it into alpine_cdc plugin, since this plugin is only built on SH7034
Also remove it from TIMER_START()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21558 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'docs/PLUGIN_API.new')
| -rw-r--r-- | docs/PLUGIN_API.new | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/PLUGIN_API.new b/docs/PLUGIN_API.new index 7e597ee..d54d7a1 100644 --- a/docs/PLUGIN_API.new +++ b/docs/PLUGIN_API.new @@ -2438,11 +2438,10 @@ void thread_wait(struct thread_entry *thread) \param thread \description -bool timer_register(int reg_prio, void (*unregister_callback)(void), long cycles, int int_prio, void (*timer_callback)(void) IF_COP(, int core)) +bool timer_register(int reg_prio, void (*unregister_callback)(void), long cycles, void (*timer_callback)(void) IF_COP(, int core)) \param reg_prio \param unregister_callback \param cycles - \param int_prio \param core \param timer_callback \return |