]> git.saurik.com Git - apple/xnu.git/blame - bsd/kern/spl.c
xnu-792.6.61.tar.gz
[apple/xnu.git] / bsd / kern / spl.c
CommitLineData
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
26unsigned
27sploff(
28 void)
29{
1c79356b
A
30 return(0);
31}
32
33unsigned
34splhigh(
35 void)
36{
1c79356b
A
37 return(0);
38}
39
40unsigned
41splsched(
42 void)
43{
1c79356b
A
44 return(0);
45}
46
47unsigned
48splclock (
49 void)
50{
1c79356b
A
51 return(0);
52}
53
54unsigned
55splpower (
56 void)
57{
1c79356b
A
58 return(0);
59}
60
61unsigned
62splvm(
63 void)
64{
1c79356b
A
65 return(0);
66}
67
68unsigned
69splbio (
70 void)
71{
1c79356b
A
72 return(0);
73}
74
75unsigned
76splimp(
77 void)
78{
1c79356b
A
79 return(0);
80}
81
82unsigned
83spltty(void)
84{
1c79356b
A
85 return(0);
86}
87
88unsigned
89splnet(
90 void)
91{
1c79356b
A
92 return(0);
93}
94
95unsigned
96splsoftclock(void)
97{
1c79356b
A
98 return(0);
99}
100
101void
102spllo(void)
103{
1c79356b
A
104 return;
105}
106
107void
108spl0(void)
109{
1c79356b
A
110 return;
111}
112
113void
114spln(unsigned t)
115{
1c79356b
A
116 return;
117}
118
119void
120splx(unsigned l)
121{
1c79356b
A
122 return;
123}
124
125void
126splon(unsigned l)
127{
1c79356b
A
128 return;
129}
91447636 130