]>
git.saurik.com Git - apple/xnu.git/blob - osfmk/mach/prof_types.h
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
24 * @OSF_FREE_COPYRIGHT@
29 * Revision 1.1.1.1 1998/09/22 21:05:30 wsanchez
30 * Import of Mac OS X kernel (~semeria)
32 * Revision 1.1.1.1 1998/03/07 02:25:46 wsanchez
33 * Import of OSF Mach kernel (~mburg)
35 * Revision 1.2.7.2 1995/01/26 22:15:46 ezf
37 * [1995/01/26 21:16:02 ezf]
39 * Revision 1.2.3.2 1993/06/09 02:43:16 gm
40 * Added to OSF/1 R1.3 from NMK15.0.
41 * [1993/06/02 21:18:04 jeffc]
43 * Revision 1.2 1993/04/19 16:39:03 devrcs
44 * ansi C conformance changes
45 * [1993/02/02 18:54:26 david]
47 * Revision 1.1 1992/09/30 02:32:04 robert
53 * Mach Operating System
54 * Copyright (c) 1991,1990,1989 Carnegie Mellon University
55 * All Rights Reserved.
57 * Permission to use, copy, modify and distribute this software and its
58 * documentation is hereby granted, provided that both the copyright
59 * notice and this permission notice appear in all copies of the
60 * software, derivative works or modified versions, and any portions
61 * thereof, and that both notices appear in supporting documentation.
63 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
64 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
65 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
67 * Carnegie Mellon requests users of this software to return to
69 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
70 * School of Computer Science
71 * Carnegie Mellon University
72 * Pittsburgh PA 15213-3890
74 * any improvements or extensions that they make and grant Carnegie Mellon
75 * the rights to redistribute these changes.
80 #ifndef _MACH_PROF_TYPES_H
81 #define _MACH_PROF_TYPES_H
83 #define SAMPLE_MAX 256 /* Max array size */
84 typedef unsigned sample_array_t
[SAMPLE_MAX
];
86 #endif /* _MACH_PROF_TYPES_H */