summaryrefslogtreecommitdiff
path: root/firmware/export/kernel.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/kernel.h')
-rw-r--r--firmware/export/kernel.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/export/kernel.h b/firmware/export/kernel.h
index 6cdd0b2db8..a21b0b3cee 100644
--- a/firmware/export/kernel.h
+++ b/firmware/export/kernel.h
@@ -221,6 +221,7 @@ int tick_add_task(void (*f)(void));
221int tick_remove_task(void (*f)(void)); 221int tick_remove_task(void (*f)(void));
222extern void tick_start(unsigned int interval_in_ms); 222extern void tick_start(unsigned int interval_in_ms);
223 223
224#ifdef INCLUDE_TIMEOUT_API
224struct timeout; 225struct timeout;
225 226
226/* timeout callback type 227/* timeout callback type
@@ -240,6 +241,7 @@ struct timeout
240void timeout_register(struct timeout *tmo, timeout_cb_type callback, 241void timeout_register(struct timeout *tmo, timeout_cb_type callback,
241 int ticks, intptr_t data); 242 int ticks, intptr_t data);
242void timeout_cancel(struct timeout *tmo); 243void timeout_cancel(struct timeout *tmo);
244#endif /* INCLUDE_TIMEOUT_API */
243 245
244#define STATE_NONSIGNALED 0 246#define STATE_NONSIGNALED 0
245#define STATE_SIGNALED 1 247#define STATE_SIGNALED 1