summaryrefslogtreecommitdiff
path: root/firmware/target/hosted/sdl/system-sdl.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/hosted/sdl/system-sdl.c')
-rw-r--r--firmware/target/hosted/sdl/system-sdl.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/firmware/target/hosted/sdl/system-sdl.c b/firmware/target/hosted/sdl/system-sdl.c
index 572d6d570a..25e77c22a2 100644
--- a/firmware/target/hosted/sdl/system-sdl.c
+++ b/firmware/target/hosted/sdl/system-sdl.c
@@ -24,6 +24,9 @@
24#include <stdlib.h> 24#include <stdlib.h>
25#include <string.h> 25#include <string.h>
26#include <inttypes.h> 26#include <inttypes.h>
27#ifdef __unix__
28#include <unistd.h>
29#endif
27#include "system.h" 30#include "system.h"
28#include "kernel.h" 31#include "kernel.h"
29#include "thread-sdl.h" 32#include "thread-sdl.h"
@@ -286,6 +289,21 @@ void system_exception_wait(void)
286 system_reboot(); 289 system_reboot();
287} 290}
288 291
292void hostfs_init(void)
293{
294 /* stub */
295}
296
297#ifdef HAVE_STORAGE_FLUSH
298int hostfs_flush(void)
299{
300#ifdef __unix__
301 sync();
302#endif
303 return 0;
304}
305#endif /* HAVE_STORAGE_FLUSH */
306
289void sys_handle_argv(int argc, char *argv[]) 307void sys_handle_argv(int argc, char *argv[])
290{ 308{
291 if (argc >= 1) 309 if (argc >= 1)