mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #5107 from Patater/uvisor-tickless-slumber
mbed_rtx_idle: uVisor: Don't attempt to sleeppull/5278/head
commit
8569c09626
|
@ -195,6 +195,14 @@ static void default_idle_hook(void)
|
|||
core_util_critical_section_exit();
|
||||
}
|
||||
|
||||
#elif defined(FEATURE_UVISOR)
|
||||
|
||||
static void default_idle_hook(void)
|
||||
{
|
||||
/* uVisor can't sleep. See <https://github.com/ARMmbed/uvisor/issues/420>
|
||||
* for details. */
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
static void default_idle_hook(void)
|
||||
|
|
Loading…
Reference in New Issue