]> git.saurik.com Git - apple/xnu.git/blame - osfmk/mach/mach_param.h
xnu-517.tar.gz
[apple/xnu.git] / osfmk / mach / mach_param.h
CommitLineData
1c79356b
A
1/*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
43866e37 6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
1c79356b 7 *
43866e37
A
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * file.
14 *
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
1c79356b
A
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
43866e37
A
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
1c79356b
A
22 *
23 * @APPLE_LICENSE_HEADER_END@
24 */
25/*
26 * @OSF_COPYRIGHT@
27 */
28/*
29 * HISTORY
30 *
31 * Revision 1.1.1.1 1998/09/22 21:05:30 wsanchez
32 * Import of Mac OS X kernel (~semeria)
33 *
34 * Revision 1.1.1.1 1998/03/07 02:25:45 wsanchez
35 * Import of OSF Mach kernel (~mburg)
36 *
37 * Revision 1.2.16.2 1994/09/23 02:38:50 ezf
38 * change marker to not FREE
39 * [1994/09/22 21:40:58 ezf]
40 *
41 * Revision 1.2.16.1 1994/06/13 20:49:40 dlb
42 * Merge MK6 and NMK17
43 * [1994/06/13 20:47:55 dlb]
44 *
45 * Revision 1.2.7.1 1994/03/11 15:26:48 bernadat
46 * Do not account exception ports as registered ports.
47 * [94/03/11 bernadat]
48 *
49 * Revision 1.2.2.4 1993/08/05 19:09:19 jeffc
50 * CR9508 - Delete dead code. Remove MACH_IPC_COMPAT
51 * [1993/08/03 17:09:06 jeffc]
52 *
53 * Revision 1.2.2.3 1993/08/03 18:29:29 gm
54 * CR9596: Change KERNEL to MACH_KERNEL.
55 * [1993/08/02 18:04:55 gm]
56 *
57 * Revision 1.2.2.2 1993/06/09 02:41:29 gm
58 * Added to OSF/1 R1.3 from NMK15.0.
59 * [1993/06/02 21:16:53 jeffc]
60 *
61 * Revision 1.2 1993/04/19 16:35:13 devrcs
62 * Fixes for ANSI C
63 * [1993/02/26 13:30:09 sp]
64 *
65 * Updated to new exception interface.
66 * [1992/12/23 13:09:02 david]
67 *
68 * Revision 1.1 1992/09/30 02:31:14 robert
69 * Initial revision
70 *
71 * $EndLog$
72 */
73/* CMU_HIST */
74/*
75 * Revision 2.4.2.1 92/03/03 16:22:03 jeffreyh
76 * Changes from TRUNK
77 * [92/02/26 12:02:58 jeffreyh]
78 *
79 * Revision 2.5 92/01/15 13:44:51 rpd
80 * Changed MACH_IPC_COMPAT conditionals to default to not present.
81 *
82 * Revision 2.4 91/05/14 16:54:40 mrt
83 * Correcting copyright
84 *
85 * Revision 2.3 91/02/05 17:33:28 mrt
86 * Changed to new Mach copyright
87 * [91/02/01 17:18:01 mrt]
88 *
89 * Revision 2.2 90/06/02 14:58:21 rpd
90 * Created.
91 * [90/03/26 23:56:39 rpd]
92 *
93 *
94 * Condensed history:
95 * Moved implementation constants elsewhere (rpd).
96 * Added SET_MAX (rpd).
97 * Added KERN_MSG_SMALL_SIZE (mwyoung).
98 * Added PORT_BACKLOG_MAX (mwyoung).
99 * Added PORT_BACKLOG_MAX (mwyoung).
100 * Added TASK_PORT_REGISTER_MAX (mwyoung).
101 * Created (mwyoung).
102 */
103/* CMU_ENDHIST */
104/*
105 * Mach Operating System
106 * Copyright (c) 1991,1990,1989,1988,1987 Carnegie Mellon University
107 * All Rights Reserved.
108 *
109 * Permission to use, copy, modify and distribute this software and its
110 * documentation is hereby granted, provided that both the copyright
111 * notice and this permission notice appear in all copies of the
112 * software, derivative works or modified versions, and any portions
113 * thereof, and that both notices appear in supporting documentation.
114 *
115 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
116 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
117 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
118 *
119 * Carnegie Mellon requests users of this software to return to
120 *
121 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
122 * School of Computer Science
123 * Carnegie Mellon University
124 * Pittsburgh PA 15213-3890
125 *
126 * any improvements or extensions that they make and grant Carnegie Mellon
127 * the rights to redistribute these changes.
128 */
129/*
130 */
131/*
132 * File: mach/mach_param.h
133 * Author: Avadis Tevanian, Jr., Michael Wayne Young
134 * Date: 1986
135 *
136 * Mach system sizing parameters
137 */
138
139#ifndef _MACH_MACH_PARAM_H_
140#define _MACH_MACH_PARAM_H_
141
142/* Number of "registered" ports */
143
144#define TASK_PORT_REGISTER_MAX 3
145
146#endif /* _MACH_MACH_PARAM_H_ */