46 lines
1.3 KiB
Diff
46 lines
1.3 KiB
Diff
|
changeset: 23581:9ce56626a5ab
|
||
|
user: Olaf Hering <olaf@aepfle.de>
|
||
|
date: Fri Jun 10 10:47:08 2011 +0200
|
||
|
files: tools/xenpaging/xc.c tools/xenpaging/xc.h
|
||
|
description:
|
||
|
xenpaging: drop xc.c, remove xc_wait_for_event
|
||
|
|
||
|
xc_wait_for_event is not used in xenpaging.
|
||
|
|
||
|
Signed-off-by: Olaf Hering <olaf@aepfle.de>
|
||
|
Committed-by: Ian Jackson <ian.jackson.citrix.com>
|
||
|
|
||
|
|
||
|
---
|
||
|
tools/xenpaging/xc.c | 4 ----
|
||
|
tools/xenpaging/xc.h | 1 -
|
||
|
2 files changed, 5 deletions(-)
|
||
|
|
||
|
Index: xen-4.1.2-testing/tools/xenpaging/xc.c
|
||
|
===================================================================
|
||
|
--- xen-4.1.2-testing.orig/tools/xenpaging/xc.c
|
||
|
+++ xen-4.1.2-testing/tools/xenpaging/xc.c
|
||
|
@@ -91,10 +91,6 @@ int xc_wait_for_event_or_timeout(xc_inte
|
||
|
return -errno;
|
||
|
}
|
||
|
|
||
|
-int xc_wait_for_event(xc_interface *xch, xc_evtchn *xce)
|
||
|
-{
|
||
|
- return xc_wait_for_event_or_timeout(xch, xce, -1);
|
||
|
-}
|
||
|
|
||
|
|
||
|
|
||
|
Index: xen-4.1.2-testing/tools/xenpaging/xc.h
|
||
|
===================================================================
|
||
|
--- xen-4.1.2-testing.orig/tools/xenpaging/xc.h
|
||
|
+++ xen-4.1.2-testing/tools/xenpaging/xc.h
|
||
|
@@ -38,7 +38,6 @@
|
||
|
|
||
|
|
||
|
int xc_mem_paging_flush_ioemu_cache(domid_t domain_id);
|
||
|
-int xc_wait_for_event(xc_interface *xch, xc_evtchn *xce);
|
||
|
int xc_wait_for_event_or_timeout(xc_interface *xch, xc_evtchn *xce, unsigned long ms);
|
||
|
|
||
|
|