aboutsummaryrefslogtreecommitdiffstats
path: root/tools/include/xen-sys/MiniOS/privcmd.h
blob: 14a328ca8f99744c829add5bf53cc809de144b15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __MINIOS_PUBLIC_PRIVCMD_H__
#define __MINIOS_PUBLIC_PRIVCMD_H__

#include <sys/types.h>

typedef struct privcmd_hypercall
{
	uint64_t op;
	uint64_t arg[5];
} privcmd_hypercall_t;

typedef struct privcmd_mmap_entry {
	uint64_t mfn;
} privcmd_mmap_entry_t; 

#endif /* __MINIOS_PUBLIC_PRIVCMD_H__ */