diff options
| author | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-04-30 20:23:04 +0000 |
|---|---|---|
| committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-04-30 20:23:04 +0000 |
| commit | 7bd007a597a15cd5fcb4f9c7d20f4309e2cbe1e3 (patch) | |
| tree | e51c989b9b87e35336ce1896ddd44f658b199c38 /firmware/export/thread.h | |
| parent | a542aa6764d6a5dadf83882fa88ec5f9a3435a5c (diff) | |
| download | rockbox-7bd007a597a15cd5fcb4f9c7d20f4309e2cbe1e3.zip rockbox-7bd007a597a15cd5fcb4f9c7d20f4309e2cbe1e3.tar.gz rockbox-7bd007a597a15cd5fcb4f9c7d20f4309e2cbe1e3.tar.bz2 rockbox-7bd007a597a15cd5fcb4f9c7d20f4309e2cbe1e3.tar.xz | |
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/thread.h')
| -rw-r--r-- | firmware/export/thread.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/export/thread.h b/firmware/export/thread.h index c6b3c8e..7720972 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); |