aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xenpaging/xenpaging.h
diff options
context:
space:
mode:
authorOlaf Hering <olaf@aepfle.de>2011-06-10 10:47:29 +0200
committerOlaf Hering <olaf@aepfle.de>2011-06-10 10:47:29 +0200
commit2001efa255f55ccd403ba4c1daf211a8f11445f2 (patch)
tree1d4bf07b5db09f3c175e116cbcc0757d8dff103a /tools/xenpaging/xenpaging.h
parent3568b93ad4b6301b8e66668c8e9c8427adcfa2a7 (diff)
downloadxen-2001efa255f55ccd403ba4c1daf211a8f11445f2.tar.gz
xen-2001efa255f55ccd403ba4c1daf211a8f11445f2.tar.bz2
xen-2001efa255f55ccd403ba4c1daf211a8f11445f2.zip
xenpaging: remove private mem_event.h
tools/xenpaging/mem_event.h is only included in xenpaging.h. Add the contents into that file and remove mem_event.h. Signed-off-by: Olaf Hering <olaf@aepfle.de> Committed-by: Ian Jackson <ian.jackson.citrix.com>
Diffstat (limited to 'tools/xenpaging/xenpaging.h')
-rw-r--r--tools/xenpaging/xenpaging.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/tools/xenpaging/xenpaging.h b/tools/xenpaging/xenpaging.h
index 36f4290248..0128c533c2 100644
--- a/tools/xenpaging/xenpaging.h
+++ b/tools/xenpaging/xenpaging.h
@@ -26,12 +26,17 @@
#include <xc_private.h>
-
#include <xen/event_channel.h>
#include <xen/mem_event.h>
-#include "mem_event.h"
-
+typedef struct mem_event {
+ domid_t domain_id;
+ xc_evtchn *xce_handle;
+ int port;
+ mem_event_back_ring_t back_ring;
+ mem_event_shared_page_t *shared_page;
+ void *ring_page;
+} mem_event_t;
typedef struct xenpaging {
xc_interface *xc_handle;