distortos  v0.7.0
object-oriented C++ RTOS for microcontrollers
threadRunner.hpp
Go to the documentation of this file.
1 
12 #ifndef INCLUDE_DISTORTOS_INTERNAL_SCHEDULER_THREADRUNNER_HPP_
13 #define INCLUDE_DISTORTOS_INTERNAL_SCHEDULER_THREADRUNNER_HPP_
14 
15 namespace distortos
16 {
17 
18 namespace internal
19 {
20 
21 class RunnableThread;
22 
35 __attribute__ ((noreturn))
36 void threadRunner(RunnableThread& runnableThread);
37 
38 } // namespace internal
39 
40 } // namespace distortos
41 
42 #endif // INCLUDE_DISTORTOS_INTERNAL_SCHEDULER_THREADRUNNER_HPP_
void threadRunner(RunnableThread &runnableThread)
Thread runner function - entry point of threads.
Definition: threadRunner.cpp:27
Top-level namespace of distortos project.
Definition: buttons.hpp:33