aboutsummaryrefslogtreecommitdiffstats
path: root/tools/ocaml/xenstored/event.ml
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2011-01-06 17:34:46 +0000
committerIan Campbell <ian.campbell@citrix.com>2011-01-06 17:34:46 +0000
commitdaec2beeaf53611dd145c4196eaee5cdd2e55a81 (patch)
treeaf7217517c50f470f9f29db534b5416f84729839 /tools/ocaml/xenstored/event.ml
parent2bdf003296acb786bdc6bec5b0e0ad2ab12eb420 (diff)
downloadxen-daec2beeaf53611dd145c4196eaee5cdd2e55a81.tar.gz
xen-daec2beeaf53611dd145c4196eaee5cdd2e55a81.tar.bz2
xen-daec2beeaf53611dd145c4196eaee5cdd2e55a81.zip
ocaml: rename Evtchn.bind_virq as Evtchn.bind_dom_exc_virq
Rename Evtchn.bind_virq as Evtchn.bind_dom_exc_virq to reflect its actual behaviour. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Committed-by: Ian Jackson <ian.jackson@eu.citrix.com>
Diffstat (limited to 'tools/ocaml/xenstored/event.ml')
-rw-r--r--tools/ocaml/xenstored/event.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ocaml/xenstored/event.ml b/tools/ocaml/xenstored/event.ml
index 5cbdccf715..0e6ed03fe8 100644
--- a/tools/ocaml/xenstored/event.ml
+++ b/tools/ocaml/xenstored/event.ml
@@ -21,7 +21,7 @@ type t = {
}
let init () = { fd = Eventchn.init (); virq_port = -1; }
-let bind_virq eventchn = eventchn.virq_port <- Eventchn.bind_virq eventchn.fd
+let bind_dom_exc_virq eventchn = eventchn.virq_port <- Eventchn.bind_dom_exc_virq eventchn.fd
let bind_interdomain eventchn domid port = Eventchn.bind_interdomain eventchn.fd domid port
let unbind eventchn port = Eventchn.unbind eventchn.fd port
let notify eventchn port = Eventchn.notify eventchn.fd port