aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/include/events.h
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-10-27 17:43:29 +0100
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-10-27 17:43:29 +0100
commitca068fad60804e3ea329c88e05958d83f68cdb24 (patch)
tree950ca75c61cb7dd1c6f74852bfc97cba76f3a124 /extras/mini-os/include/events.h
parentac266cafdafedeed0fd4d2d55b0f9831fa4bd80a (diff)
downloadxen-ca068fad60804e3ea329c88e05958d83f68cdb24.tar.gz
xen-ca068fad60804e3ea329c88e05958d83f68cdb24.tar.bz2
xen-ca068fad60804e3ea329c88e05958d83f68cdb24.zip
I've created a patch to get the mini-os to compile in Xen-unstable. The patch
is pretty big, but this is mostly because I've replaced hypervisor.h with the hypercalls.h header file from Linux (which seems easier to maintain anyway). I've ignored X86_64. Signed-off-by: Simon Kagstrom <simon.kagstrom@bth.se>
Diffstat (limited to 'extras/mini-os/include/events.h')
-rw-r--r--extras/mini-os/include/events.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/mini-os/include/events.h b/extras/mini-os/include/events.h
index 3fad1f376c..76226efcd5 100644
--- a/extras/mini-os/include/events.h
+++ b/extras/mini-os/include/events.h
@@ -47,7 +47,7 @@ static inline int notify_via_evtchn(int port)
{
evtchn_op_t op;
op.cmd = EVTCHNOP_send;
- op.u.send.local_port = port;
+ op.u.send.port = port;
return HYPERVISOR_event_channel_op(&op);
}