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: BLE_API mbed-dev-bin nRF51822
Fork of microbit-dal by
Diff: source/core/MicroBitFiber.cpp
- Revision:
- 23:6055f6c19fa6
- Parent:
- 22:23d7b9a4b082
- Child:
- 25:27299423d813
--- a/source/core/MicroBitFiber.cpp Wed Jul 13 12:17:54 2016 +0100
+++ b/source/core/MicroBitFiber.cpp Wed Jul 13 12:17:56 2016 +0100
@@ -417,7 +417,7 @@
if (messageBus == NULL || !fiber_scheduler_running())
return MICROBIT_NOT_SUPPORTED;
- // Sleep is a blocking call, so if we're in a fork on block context,
+ // Sleep is a blocking call, so if we'r ein a fork on block context,
// it's time to spawn a new fiber...
if (currentFiber->flags & MICROBIT_FIBER_FLAG_FOB)
{
@@ -428,25 +428,20 @@
// If we're out of memory, there's nothing we can do.
// keep running in the context of the current thread as a best effort.
if (forkedFiber != NULL)
- {
- f = forkedFiber;
- dequeue_fiber(f);
- queue_fiber(f, &runQueue);
- schedule();
- }
+ f = forkedFiber;
}
// Encode the event data in the context field. It's handy having a 32 bit core. :-)
f->context = value << 16 | id;
- // Remove ourselves from the run queue
+ // Remove ourselve from the run queue
dequeue_fiber(f);
// Add ourselves to the sleep queue. We maintain strict ordering here to reduce lookup times.
queue_fiber(f, &waitQueue);
// Register to receive this event, so we can wake up the fiber when it happens.
- // Special case for the notify channel, as we always stay registered for that.
+ // Special case for teh notify channel, as we always stay registered for that.
if (id != MICROBIT_ID_NOTIFY && id != MICROBIT_ID_NOTIFY_ONE)
messageBus->listen(id, value, scheduler_event, MESSAGE_BUS_LISTENER_IMMEDIATE);
