aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xen/event.h
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-06-10 11:07:11 +0100
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-06-10 11:07:11 +0100
commite5617c303f8259293cd68e6474a50654eae78bb5 (patch)
treee254ff726381c4447012cae09cff2875517adb07 /xen/include/xen/event.h
parent6e9ae8d1e8ed38bbc1d649be4a536d9c6b5ca179 (diff)
downloadxen-e5617c303f8259293cd68e6474a50654eae78bb5.tar.gz
xen-e5617c303f8259293cd68e6474a50654eae78bb5.tar.bz2
xen-e5617c303f8259293cd68e6474a50654eae78bb5.zip
[XEN] Replace direct common-code access of evtchn_upcall_mask
with local_event_delivery_* accessors. Notes: 1. Still some (read-only, debug) use in keyhandler.c 2. Still accesses through current->vcpu_info. Both above may need to be compiled only for architectures that use event channels. Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/include/xen/event.h')
-rw-r--r--xen/include/xen/event.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/xen/include/xen/event.h b/xen/include/xen/event.h
index f7dee3b75d..7b0d428b67 100644
--- a/xen/include/xen/event.h
+++ b/xen/include/xen/event.h
@@ -38,9 +38,6 @@ extern void send_guest_global_virq(struct domain *d, int virq);
*/
extern void send_guest_pirq(struct domain *d, int pirq);
-#define evtchn_pending(d, p) \
- (test_bit((p), &(d)->shared_info->evtchn_pending[0]))
-
/* Send a notification from a local event-channel port. */
extern long evtchn_send(unsigned int lport);