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