aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xenpaging/xenpaging.h
diff options
context:
space:
mode:
authorOlaf Hering <olaf@aepfle.de>2012-01-09 17:07:26 +0100
committerOlaf Hering <olaf@aepfle.de>2012-01-09 17:07:26 +0100
commitf08f1c8755206e8c7f05c904bda09ec2d08c49a0 (patch)
tree780a3b4fd18b8074649ebac940fc47c9e116da44 /tools/xenpaging/xenpaging.h
parent98eda193b6b358929423979b12a839f2d2c2e83a (diff)
downloadxen-f08f1c8755206e8c7f05c904bda09ec2d08c49a0.tar.gz
xen-f08f1c8755206e8c7f05c904bda09ec2d08c49a0.tar.bz2
xen-f08f1c8755206e8c7f05c904bda09ec2d08c49a0.zip
xenpaging: convert xenpaging_t to struct xenpaging
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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/xenpaging/xenpaging.h b/tools/xenpaging/xenpaging.h
index 4ac915da1c..d6400c90c4 100644
--- a/tools/xenpaging/xenpaging.h
+++ b/tools/xenpaging/xenpaging.h
@@ -40,7 +40,7 @@ typedef struct mem_event {
void *ring_page;
} mem_event_t;
-typedef struct xenpaging {
+struct xenpaging {
xc_interface *xc_handle;
struct xs_handle *xs_handle;
@@ -54,7 +54,7 @@ typedef struct xenpaging {
int policy_mru_size;
int debug;
unsigned long pagein_queue[XENPAGING_PAGEIN_QUEUE_SIZE];
-} xenpaging_t;
+};
struct victim {
@@ -63,7 +63,7 @@ struct victim {
};
-extern void create_page_in_thread(xenpaging_t *paging);
+extern void create_page_in_thread(struct xenpaging *paging);
extern void page_in_trigger(void);
#endif // __XEN_PAGING_H__