Official mbed Real Time Operating System based on the RTX implementation of the CMSIS-RTOS API open standard.
Fork of mbed-rtos by
Diff: rtos/Thread.cpp
- Revision:
- 107:bdd541595fc5
- Parent:
- 90:21b438192b0f
--- a/rtos/Thread.cpp Wed Mar 02 11:30:15 2016 +0000
+++ b/rtos/Thread.cpp Tue Mar 15 09:00:39 2016 +0000
@@ -22,6 +22,7 @@
#include "Thread.h"
#include "mbed_error.h"
+#include "rtos_idle.h"
namespace rtos {
@@ -132,6 +133,10 @@
return osThreadGetId();
}
+void Thread::attach_idle_hook(void (*fptr)(void)) {
+ rtos_attach_idle_hook(fptr);
+}
+
Thread::~Thread() {
terminate();
if (_dynamic_stack) {
