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.tar.gz rockbox-89ccd5c145e45ad541a02f38e2ad07fb916f7135.zip |
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 7e597eed58..d54d7a1ce0 100644 --- a/docs/PLUGIN_API.new +++ b/docs/PLUGIN_API.new | |||
@@ -2438,11 +2438,10 @@ void thread_wait(struct thread_entry *thread) | |||
2438 | \param thread | 2438 | \param thread |
2439 | \description | 2439 | \description |
2440 | 2440 | ||
2441 | bool timer_register(int reg_prio, void (*unregister_callback)(void), long cycles, int int_prio, void (*timer_callback)(void) IF_COP(, int core)) | 2441 | bool timer_register(int reg_prio, void (*unregister_callback)(void), long cycles, void (*timer_callback)(void) IF_COP(, int core)) |
2442 | \param reg_prio | 2442 | \param reg_prio |
2443 | \param unregister_callback | 2443 | \param unregister_callback |
2444 | \param cycles | 2444 | \param cycles |
2445 | \param int_prio | ||
2446 | \param core | 2445 | \param core |
2447 | \param timer_callback | 2446 | \param timer_callback |
2448 | \return | 2447 | \return |