From d1423b28827cdc817d486df09db3cf98d4e83201 Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Fri, 15 Sep 2006 11:07:25 +0100 Subject: [MINIOS] Fix to use new event-channel API properly. Signed-off-by: Mark Williamson --- extras/mini-os/include/x86/x86_32/hypercall-x86_32.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'extras/mini-os/include/x86/x86_32/hypercall-x86_32.h') diff --git a/extras/mini-os/include/x86/x86_32/hypercall-x86_32.h b/extras/mini-os/include/x86/x86_32/hypercall-x86_32.h index 6556c4f7e2..70e8997a86 100644 --- a/extras/mini-os/include/x86/x86_32/hypercall-x86_32.h +++ b/extras/mini-os/include/x86/x86_32/hypercall-x86_32.h @@ -238,9 +238,9 @@ HYPERVISOR_update_va_mapping( static inline int HYPERVISOR_event_channel_op( - void *op) + int cmd, void *op) { - return _hypercall1(int, event_channel_op, op); + return _hypercall2(int, event_channel_op, cmd, op); } static inline int -- cgit v1.2.3 From 1d57fa7227c5dd2e6fde9e30b6d24eb55674b4b3 Mon Sep 17 00:00:00 2001 From: "kfraser@localhost.localdomain" Date: Mon, 27 Nov 2006 10:23:19 +0000 Subject: [MINIOS] Switched to new interface for HYPERVISOR_sched_op(). Signed-off-by: Dietmar Hahn --- extras/mini-os/include/x86/x86_32/hypercall-x86_32.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'extras/mini-os/include/x86/x86_32/hypercall-x86_32.h') diff --git a/extras/mini-os/include/x86/x86_32/hypercall-x86_32.h b/extras/mini-os/include/x86/x86_32/hypercall-x86_32.h index 70e8997a86..5f8b51f872 100644 --- a/extras/mini-os/include/x86/x86_32/hypercall-x86_32.h +++ b/extras/mini-os/include/x86/x86_32/hypercall-x86_32.h @@ -167,7 +167,7 @@ HYPERVISOR_fpu_taskswitch( static inline int HYPERVISOR_sched_op( - int cmd, unsigned long arg) + int cmd, void *arg) { return _hypercall2(int, sched_op, cmd, arg); } -- cgit v1.2.3