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!!!
Diff: equeue/equeue.c
- Revision:
- 11:1bc395c82a41
- Parent:
- 3:3d3560169945
diff -r 9cd8f27f5eeb -r 1bc395c82a41 equeue/equeue.c
--- a/equeue/equeue.c Mon Nov 07 10:25:17 2016 -0600
+++ b/equeue/equeue.c Sun Nov 20 14:18:08 2016 -0600
@@ -558,6 +558,11 @@
}
void equeue_chain(equeue_t *q, equeue_t *target) {
+ if (!target) {
+ equeue_background(q, 0, 0);
+ return;
+ }
+
struct equeue_chain_context *c = equeue_alloc(q,
sizeof(struct equeue_chain_context));