diff options
| author | Rob Purchase <shotofadds@rockbox.org> | 2009-07-14 20:04:26 +0000 |
|---|---|---|
| committer | Rob Purchase <shotofadds@rockbox.org> | 2009-07-14 20:04:26 +0000 |
| commit | 75b27eaacc07ea14abf937e89cee0f337f3001fc (patch) | |
| tree | 2dacbe6245fb15349225db776b116ba3e3619c7a /firmware | |
| parent | 04ab67d4317bd155d9f8647b43964c3b62280e2b (diff) | |
| download | rockbox-75b27eaacc07ea14abf937e89cee0f337f3001fc.zip rockbox-75b27eaacc07ea14abf937e89cee0f337f3001fc.tar.gz rockbox-75b27eaacc07ea14abf937e89cee0f337f3001fc.tar.bz2 rockbox-75b27eaacc07ea14abf937e89cee0f337f3001fc.tar.xz | |
Guard the Timeout API declarations with the correct #ifdef
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21869 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
| -rw-r--r-- | firmware/export/kernel.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/export/kernel.h b/firmware/export/kernel.h index 6cdd0b2..a21b0b3 100644 --- a/firmware/export/kernel.h +++ b/firmware/export/kernel.h @@ -221,6 +221,7 @@ int tick_add_task(void (*f)(void)); int tick_remove_task(void (*f)(void)); extern void tick_start(unsigned int interval_in_ms); +#ifdef INCLUDE_TIMEOUT_API struct timeout; /* timeout callback type @@ -240,6 +241,7 @@ struct timeout void timeout_register(struct timeout *tmo, timeout_cb_type callback, int ticks, intptr_t data); void timeout_cancel(struct timeout *tmo); +#endif /* INCLUDE_TIMEOUT_API */ #define STATE_NONSIGNALED 0 #define STATE_SIGNALED 1 |