Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: 4DGL-uLCD-SE wave_player_appbd
Fork of rtos_mutex by
main.cpp
- Committer:
- mab5449
- Date:
- 2017-01-13
- Revision:
- 6:1ae0d86d2020
- Parent:
- 5:384d6cef11d4
- Child:
- 7:4ba0bb973eb9
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");
}
            
    