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:
parent
7c5b277187
commit
7984417029
2 changed files with 6 additions and 6 deletions
|
@ -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;
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue