summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorJörg Hohensohn <hohensoh@rockbox.org>2004-04-30 20:23:04 +0000
committerJörg Hohensohn <hohensoh@rockbox.org>2004-04-30 20:23:04 +0000
commit7bd007a597a15cd5fcb4f9c7d20f4309e2cbe1e3 (patch)
treee51c989b9b87e35336ce1896ddd44f658b199c38 /firmware/export
parenta542aa6764d6a5dadf83882fa88ec5f9a3435a5c (diff)
remove_thread() function added, for future dynamic thread creation by plugins
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4562 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/thread.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/export/thread.h b/firmware/export/thread.h
index c6b3c8e4e3..77209726f7 100644
--- a/firmware/export/thread.h
+++ b/firmware/export/thread.h
@@ -25,6 +25,7 @@
#define DEFAULT_STACK_SIZE 0x400 /* Bytes */
int create_thread(void* function, void* stack, int stack_size, char *name);
+void remove_thread(int threadnum);
void switch_thread(void);
void sleep_thread(void);
void wake_up_thread(void);