mirror of
https://github.com/gosticks/RIOT.git
synced 2025-10-16 12:05:37 +00:00
- Introduced enum type `thread_state_t` to replace preprocessor macros
- Moved thread states to `sched.h` for two reasons:
a) Because of the interdependencies of `sched.h` and `thread.h` keeping it in
`thread.h` would result in ugly code.
b) Theses thread states are defined from the schedulers point of view, so it
actually makes senses to have it defined there
|
||
|---|---|---|
| .. | ||
| include/riot | ||
| condition_variable.cpp | ||
| cppsupport.cpp | ||
| doc.txt | ||
| Makefile | ||
| mutex.cpp | ||
| thread.cpp | ||