aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/include/x86
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2006-11-27 10:23:19 +0000
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2006-11-27 10:23:19 +0000
commit1d57fa7227c5dd2e6fde9e30b6d24eb55674b4b3 (patch)
tree1a596e79938b3dd8d4d5203dafc87c537be4192c /extras/mini-os/include/x86
parente61c814cd6092530474bebda3c66133146525ba5 (diff)
downloadxen-1d57fa7227c5dd2e6fde9e30b6d24eb55674b4b3.tar.gz
xen-1d57fa7227c5dd2e6fde9e30b6d24eb55674b4b3.tar.bz2
xen-1d57fa7227c5dd2e6fde9e30b6d24eb55674b4b3.zip
[MINIOS] Switched to new interface for HYPERVISOR_sched_op().
Signed-off-by: Dietmar Hahn <dietmar.hahn@fujitsu-siemens.com>
Diffstat (limited to 'extras/mini-os/include/x86')
-rw-r--r--extras/mini-os/include/x86/x86_32/hypercall-x86_32.h2
-rw-r--r--extras/mini-os/include/x86/x86_64/hypercall-x86_64.h2
2 files changed, 2 insertions, 2 deletions
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);
}
diff --git a/extras/mini-os/include/x86/x86_64/hypercall-x86_64.h b/extras/mini-os/include/x86/x86_64/hypercall-x86_64.h
index 159149f48b..2d2904a218 100644
--- a/extras/mini-os/include/x86/x86_64/hypercall-x86_64.h
+++ b/extras/mini-os/include/x86/x86_64/hypercall-x86_64.h
@@ -171,7 +171,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);
}