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.
Dependents: HelloWorld_CCA01M1 HelloWorld_CCA02M1 CI-data-logger-server HelloWorld_CCA02M1 ... more
This is a fork of the events subdirectory of https://github.com/ARMmbed/mbed-os.
Note, you must import this library with import name: events!!!
Revision 9824:23b5875f4221, committed 2017-05-15
- Comitter:
- Bartek Szatkowski
- Date:
- Mon May 15 09:55:45 2017 -0500
- Parent:
- 9823:3e5679fe7fa6
- Child:
- 9825:e033ed92ed49
- Commit message:
- Update codebase for CMSIS5/RTX5
Update all of mbed-os to use RTX5.
Changed in this revision
| equeue/equeue_platform.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/equeue/equeue_platform.h Fri Apr 21 14:10:17 2017 +0100
+++ b/equeue/equeue_platform.h Mon May 15 09:55:45 2017 -0500
@@ -112,7 +112,7 @@
bool signal;
} equeue_sema_t;
#elif defined(EQUEUE_PLATFORM_MBED) && defined(MBED_CONF_RTOS_PRESENT)
-typedef unsigned equeue_sema_t[8];
+typedef unsigned equeue_sema_t[9];
#elif defined(EQUEUE_PLATFORM_MBED)
typedef volatile int equeue_sema_t;
#endif