aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/include/chdynamic.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/kernel/include/chdynamic.h')
-rw-r--r--os/kernel/include/chdynamic.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/os/kernel/include/chdynamic.h b/os/kernel/include/chdynamic.h
index 3ac79a5f4..d28909aca 100644
--- a/os/kernel/include/chdynamic.h
+++ b/os/kernel/include/chdynamic.h
@@ -47,15 +47,15 @@
#ifdef __cplusplus
extern "C" {
#endif
- Thread *chThdAddRef(Thread *tp);
- void chThdRelease(Thread *tp);
+ thread_t *chThdAddRef(thread_t *tp);
+ void chThdRelease(thread_t *tp);
#if CH_USE_HEAP
- Thread *chThdCreateFromHeap(MemoryHeap *heapp, size_t size,
- tprio_t prio, tfunc_t pf, void *arg);
+ thread_t *chThdCreateFromHeap(MemoryHeap *heapp, size_t size,
+ tprio_t prio, tfunc_t pf, void *arg);
#endif
#if CH_USE_MEMPOOLS
- Thread *chThdCreateFromMemoryPool(MemoryPool *mp, tprio_t prio,
- tfunc_t pf, void *arg);
+ thread_t *chThdCreateFromMemoryPool(MemoryPool *mp, tprio_t prio,
+ tfunc_t pf, void *arg);
#endif
#ifdef __cplusplus
}