summaryrefslogtreecommitdiff
path: root/chip/host/reboot.c
diff options
context:
space:
mode:
Diffstat (limited to 'chip/host/reboot.c')
-rw-r--r--chip/host/reboot.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/chip/host/reboot.c b/chip/host/reboot.c
index 526276aede..7fdb6f7f8e 100644
--- a/chip/host/reboot.c
+++ b/chip/host/reboot.c
@@ -12,9 +12,12 @@
#include "reboot.h"
#include "test_util.h"
+__attribute__((noreturn))
void emulator_reboot(void)
{
char *argv[] = {strdup(__get_prog_name()), NULL};
emulator_flush();
execv(__get_prog_name(), argv);
+ while (1)
+ ;
}