]>
Commit | Line | Data |
---|---|---|
1c79356b A |
1 | /* |
2 | * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
de355530 A |
6 | * The contents of this file constitute Original Code as defined in and |
7 | * are subject to the Apple Public Source License Version 1.1 (the | |
8 | * "License"). You may not use this file except in compliance with the | |
9 | * License. Please obtain a copy of the License at | |
10 | * http://www.apple.com/publicsource and read it before using this file. | |
1c79356b | 11 | * |
de355530 A |
12 | * This Original Code and all software distributed under the License are |
13 | * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
1c79356b A |
14 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
15 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
de355530 A |
16 | * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the |
17 | * License for the specific language governing rights and limitations | |
18 | * under the License. | |
1c79356b A |
19 | * |
20 | * @APPLE_LICENSE_HEADER_END@ | |
21 | */ | |
22 | ||
23 | /* | |
24 | * To add a new entry: | |
25 | * Add an "PPCTRAP(routine)" to the table below | |
26 | * | |
27 | * Add trap definition to mach/ppc/syscall_sw.h and | |
28 | * recompile user library. | |
29 | * | |
30 | * Note: | |
31 | * The maximum number of calls is 0x1000 (4096 for the hexually challanged) | |
32 | * | |
33 | */ | |
34 | ||
35 | typedef int (*PPCcallEnt)(struct savearea *save); | |
36 | ||
37 | #define PPCcall(rout) rout | |
38 | #define dis (PPCcallEnt)0 | |
39 | ||
40 | PPCcallEnt PPCcalls[] = { | |
41 | ||
42 | PPCcall(diagCall), /* 0x6000 Call diagnostics routines */ | |
43 | PPCcall(vmm_get_version), /* 0x6001 Get Virtual Machine Monitor version */ | |
44 | PPCcall(vmm_get_features), /* 0x6002 Get Virtual Machine Monitor supported features */ | |
45 | PPCcall(vmm_init_context), /* 0x6003 Initialize a VMM context */ | |
46 | PPCcall(vmm_dispatch), /* 0x6004 Dispatch a Virtual Machine Monitor call */ | |
47 | PPCcall(bb_enable_bluebox), /* 0x6005 Enable this thread for use in the blue box virtual machine */ | |
48 | PPCcall(bb_disable_bluebox), /* 0x6006 Disable this thread for use in the blue box virtual machine */ | |
49 | PPCcall(bb_settaskenv), /* 0x6007 Set the BlueBox per thread task environment data */ | |
0b4e3aa0 | 50 | PPCcall(vmm_stop_vm), /* 0x6008 Stop a running VM */ |
1c79356b | 51 | |
9bccf70c A |
52 | PPCcall(dis), /* 0x6009 CHUD Interface hook */ |
53 | ||
de355530 A |
54 | PPCcall(dis), /* 0x600A disabled */ |
55 | PPCcall(dis), /* 0x600B disabled */ | |
56 | PPCcall(dis), /* 0x600C disabled */ | |
1c79356b A |
57 | PPCcall(dis), /* 0x600D disabled */ |
58 | PPCcall(dis), /* 0x600E disabled */ | |
59 | PPCcall(dis), /* 0x600F disabled */ | |
60 | }; | |
61 | ||
62 | #undef dis |