1 /*
2  * SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <stdio.h>
8 #include <stdlib.h>
9 
10 /*
11  * "inner" restart function on POSIX/Linux just exits.
12 */
esp_restart_noos(void)13 void esp_restart_noos(void)
14 {
15     printf("restart triggered on Linux, hence exiting\n");
16     exit(0); // TODO: other exit value?
17 }
18