]>
git.saurik.com Git - apple/xnu.git/blob - osfmk/mach/mach_param.h
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
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
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
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
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.
23 * @APPLE_LICENSE_HEADER_END@
31 * Revision 1.1.1.1 1998/09/22 21:05:30 wsanchez
32 * Import of Mac OS X kernel (~semeria)
34 * Revision 1.1.1.1 1998/03/07 02:25:45 wsanchez
35 * Import of OSF Mach kernel (~mburg)
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]
41 * Revision 1.2.16.1 1994/06/13 20:49:40 dlb
43 * [1994/06/13 20:47:55 dlb]
45 * Revision 1.2.7.1 1994/03/11 15:26:48 bernadat
46 * Do not account exception ports as registered ports.
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]
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]
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]
61 * Revision 1.2 1993/04/19 16:35:13 devrcs
63 * [1993/02/26 13:30:09 sp]
65 * Updated to new exception interface.
66 * [1992/12/23 13:09:02 david]
68 * Revision 1.1 1992/09/30 02:31:14 robert
75 * Revision 2.4.2.1 92/03/03 16:22:03 jeffreyh
77 * [92/02/26 12:02:58 jeffreyh]
79 * Revision 2.5 92/01/15 13:44:51 rpd
80 * Changed MACH_IPC_COMPAT conditionals to default to not present.
82 * Revision 2.4 91/05/14 16:54:40 mrt
83 * Correcting copyright
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]
89 * Revision 2.2 90/06/02 14:58:21 rpd
91 * [90/03/26 23:56:39 rpd]
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).
105 * Mach Operating System
106 * Copyright (c) 1991,1990,1989,1988,1987 Carnegie Mellon University
107 * All Rights Reserved.
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.
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.
119 * Carnegie Mellon requests users of this software to return to
121 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
122 * School of Computer Science
123 * Carnegie Mellon University
124 * Pittsburgh PA 15213-3890
126 * any improvements or extensions that they make and grant Carnegie Mellon
127 * the rights to redistribute these changes.
132 * File: mach/mach_param.h
133 * Author: Avadis Tevanian, Jr., Michael Wayne Young
136 * Mach system sizing parameters
139 #ifndef _MACH_MACH_PARAM_H_
140 #define _MACH_MACH_PARAM_H_
142 /* Number of "registered" ports */
144 #define TASK_PORT_REGISTER_MAX 3
146 #endif /* _MACH_MACH_PARAM_H_ */