]>
Commit | Line | Data |
---|---|---|
1c79356b A |
1 | /* |
2 | * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
37839358 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 | * |
37839358 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, | |
37839358 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 | #include <machine/machine_routines.h> | |
23 | #include <machine/spl.h> | |
24 | #include <kern/thread.h> | |
25 | ||
26 | unsigned | |
27 | sploff( | |
28 | void) | |
29 | { | |
1c79356b A |
30 | return(0); |
31 | } | |
32 | ||
33 | unsigned | |
34 | splhigh( | |
35 | void) | |
36 | { | |
1c79356b A |
37 | return(0); |
38 | } | |
39 | ||
40 | unsigned | |
41 | splsched( | |
42 | void) | |
43 | { | |
1c79356b A |
44 | return(0); |
45 | } | |
46 | ||
47 | unsigned | |
48 | splclock ( | |
49 | void) | |
50 | { | |
1c79356b A |
51 | return(0); |
52 | } | |
53 | ||
54 | unsigned | |
55 | splpower ( | |
56 | void) | |
57 | { | |
1c79356b A |
58 | return(0); |
59 | } | |
60 | ||
61 | unsigned | |
62 | splvm( | |
63 | void) | |
64 | { | |
1c79356b A |
65 | return(0); |
66 | } | |
67 | ||
68 | unsigned | |
69 | splbio ( | |
70 | void) | |
71 | { | |
1c79356b A |
72 | return(0); |
73 | } | |
74 | ||
75 | unsigned | |
76 | splimp( | |
77 | void) | |
78 | { | |
1c79356b A |
79 | return(0); |
80 | } | |
81 | ||
82 | unsigned | |
83 | spltty(void) | |
84 | { | |
1c79356b A |
85 | return(0); |
86 | } | |
87 | ||
88 | unsigned | |
89 | splnet( | |
90 | void) | |
91 | { | |
1c79356b A |
92 | return(0); |
93 | } | |
94 | ||
95 | unsigned | |
96 | splsoftclock(void) | |
97 | { | |
1c79356b A |
98 | return(0); |
99 | } | |
100 | ||
101 | void | |
102 | spllo(void) | |
103 | { | |
1c79356b A |
104 | return; |
105 | } | |
106 | ||
107 | void | |
108 | spl0(void) | |
109 | { | |
1c79356b A |
110 | return; |
111 | } | |
112 | ||
113 | void | |
114 | spln(unsigned t) | |
115 | { | |
1c79356b A |
116 | return; |
117 | } | |
118 | ||
119 | void | |
120 | splx(unsigned l) | |
121 | { | |
1c79356b A |
122 | return; |
123 | } | |
124 | ||
125 | void | |
126 | splon(unsigned l) | |
127 | { | |
1c79356b A |
128 | return; |
129 | } | |
91447636 | 130 |