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