summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2011-03-05 17:48:06 +0000
committerThomas Martitz <kugel@rockbox.org>2011-03-05 17:48:06 +0000
commitcc889e9d608e6b07b78541849b7e63b6fb3f6058 (patch)
treeea01a47602b68561d294f705e8ab7669fb00ae9a /apps/plugin.c
parent0b0f99b18ebe6305c9cab12bf8b36d154fc9c87f (diff)
downloadrockbox-cc889e9d608e6b07b78541849b7e63b6fb3f6058.tar.gz
rockbox-cc889e9d608e6b07b78541849b7e63b6fb3f6058.zip
Change the thread api a bit.
* Remove THREAD_ID_CURRENT macro in favor of a thread_self() function, this allows thread functions to be simpler. * thread_self_entry() shortcut for kernel.c. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29521 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 192488ef81..3807ad5d76 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -779,6 +779,7 @@ static const struct plugin_api rockbox_api = {
779 779
780 /* new stuff at the end, sort into place next time 780 /* new stuff at the end, sort into place next time
781 the API gets incompatible */ 781 the API gets incompatible */
782 thread_self,
782}; 783};
783 784
784int plugin_load(const char* plugin, const void* parameter) 785int plugin_load(const char* plugin, const void* parameter)