get rid of pthreads
[ginge.git] / loader / header.h
index 34db74f..4bc6e1b 100644 (file)
@@ -1,9 +1,11 @@
 #ifndef INCLUDE_sQt5fY5eUJn5tKV0IBTDxK0zqQutTqTp
 #define INCLUDE_sQt5fY5eUJn5tKV0IBTDxK0zqQutTqTp 1
 
+#include "llibc.h"
+
 #define PFX "ginge: "
-#define err(f, ...) fprintf(stderr, PFX f, ##__VA_ARGS__)
-#define log(f, ...) fprintf(stdout, PFX f, ##__VA_ARGS__)
+#define err(f, ...) g_fprintf(2, PFX f, ##__VA_ARGS__)
+#define log(f, ...) g_fprintf(1, PFX f, ##__VA_ARGS__)
 #ifdef DBG
 #define dbg log
 #define dbg_c printf
@@ -17,6 +19,7 @@ void do_entry(unsigned long entry, void *stack_frame, int stack_frame_cnt, void
 struct dev_fd_t {
   const char *name;
   int fd;
+  void (*open_cb)(int fd);
 };
 extern struct dev_fd_t emu_interesting_fds[];
 enum {
@@ -41,12 +44,16 @@ struct op_context;
 void  emu_init(void *map_bottom);
 void  emu_call_handle_op(struct op_context *op_ctx);
 void *emu_do_mmap(unsigned int length, int prot, int flags, int fd, unsigned int offset);
+int   emu_do_munmap(void *addr, unsigned int length);
 int   emu_do_ioctl(int fd, int request, void *argp);
 int   emu_read_gpiodev(void *buf, int count);
 void *emu_do_fopen(const char *path, const char *mode);
 int   emu_do_system(const char *command);
+int   emu_do_execve(const char *filename, char *const argv[], char *const envp[]);
 
+int   host_init(void);
 int   host_read_btns(void);
+void  host_forced_exit(void);
 
 enum  { GP2X_UP = 0,      GP2X_LEFT = 2,      GP2X_DOWN = 4,  GP2X_RIGHT = 6,
         GP2X_START = 8,   GP2X_SELECT = 9,    GP2X_L = 10,    GP2X_R = 11,