1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

some code cleanups

This commit is contained in:
Stefan Lankes 2017-02-25 17:21:14 +01:00
parent 7c5b277187
commit 7984417029
2 changed files with 6 additions and 6 deletions

View file

@ -66,6 +66,12 @@
#define PROXY_DEBUG(fmt, ...) {}
#endif
typedef enum {
BAREMETAL = 0,
QEMU,
UHYVE
} monitor_t;
static monitor_t monitor = BAREMETAL;
static int sobufsize = 131072;
static unsigned int isle_nr = 0;

View file

@ -39,12 +39,6 @@
#define __HERMIT_read 4
#define __HERMIT_lseek 5
typedef enum {
BAREMETAL = 0,
QEMU,
UHYVE
} monitor_t;
int uhyve_init(char *path);
int uhyve_loop(void);