direct-io.hg
view extras/mini-os/include/gnttab.h @ 15534:da4c76340184
NativeDom 1:1 support for x86_64, 32bitbios reloc bug fix
author | Guy Zana <guy@neocleus.com> |
---|---|
date | Wed Sep 19 10:51:46 2007 +0200 (2007-09-19) |
parents | 4a669bd50657 |
children |
line source
1 #ifndef __GNTTAB_H__
2 #define __GNTTAB_H__
4 #include <xen/grant_table.h>
6 void init_gnttab(void);
7 grant_ref_t gnttab_alloc_and_grant(void **map);
8 grant_ref_t gnttab_grant_access(domid_t domid, unsigned long frame,
9 int readonly);
10 grant_ref_t gnttab_grant_transfer(domid_t domid, unsigned long pfn);
11 unsigned long gnttab_end_transfer(grant_ref_t gref);
12 int gnttab_end_access(grant_ref_t ref);
13 const char *gnttabop_error(int16_t status);
15 #endif /* !__GNTTAB_H__ */