Lin ShengKun
/
rtos_mutex
NYP
Fork of rtos_mutex by
main.cpp
- Committer:
- mab5449
- Date:
- 2017-01-13
- Revision:
- 6:1ae0d86d2020
- Parent:
- 5:384d6cef11d4
- Child:
- 7:bd0aa7f21f53
File content as of revision 6:1ae0d86d2020:
#include "mbed.h" Mutex stdio_mutex; Thread t2; Thread t3; void notify(const char* name, int state) { stdio_mutex.lock(); printf("%s: %d\n\r", name, state); stdio_mutex.unlock(); } void test_thread(void const *args) { while (true) { notify((const char*)args, 0); wait(1); notify((const char*)args, 1); wait(1); } } int main() { t2.start(callback(test_thread, (void *)"Th 2")); t3.start(callback(test_thread, (void *)"Th 3")); test_thread((void *)"Th 1"); }