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.
Fork of LcdWindow by
Diff: semaphore.h
- Revision:
- 9:2fe93daa2106
- Parent:
- 3:e5d5e2fe4bf6
diff -r ba176eea3e40 -r 2fe93daa2106 semaphore.h
--- a/semaphore.h Mon Jan 10 22:57:59 2011 +0000
+++ b/semaphore.h Tue Feb 22 22:57:44 2011 +0000
@@ -18,10 +18,13 @@
// release the semaphore
void release();
+ static void setAbort(bool abort){_abort=abort;};
+
private:
enum { SemFree, SemTaken };
// semaphore value
int s;
+ static bool _abort;
};
