|
ChibiOS/RT
2.5.1 |
Dynamic threads code.
Definition in file chdynamic.c.
#include "ch.h"Go to the source code of this file.
Functions | |
| Thread * | chThdAddRef (Thread *tp) |
| Adds a reference to a thread object. | |
| void | chThdRelease (Thread *tp) |
| Releases a reference to a thread object. | |
| Thread * | chThdCreateFromHeap (MemoryHeap *heapp, size_t size, tprio_t prio, tfunc_t pf, void *arg) |
| Creates a new thread allocating the memory from the heap. | |
| Thread * | chThdCreateFromMemoryPool (MemoryPool *mp, tprio_t prio, tfunc_t pf, void *arg) |
| Creates a new thread allocating the memory from the specified memory pool. | |