]>
Commit | Line | Data |
---|---|---|
1c79356b A |
1 | /* |
2 | * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
de355530 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. | |
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 | |
1c79356b A |
14 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
15 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
de355530 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 | /* | |
23 | * @OSF_FREE_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:46 wsanchez | |
32 | * Import of OSF Mach kernel (~mburg) | |
33 | * | |
34 | * Revision 1.2.7.2 1995/01/26 22:15:46 ezf | |
35 | * corrected CR | |
36 | * [1995/01/26 21:16:02 ezf] | |
37 | * | |
38 | * Revision 1.2.3.2 1993/06/09 02:43:16 gm | |
39 | * Added to OSF/1 R1.3 from NMK15.0. | |
40 | * [1993/06/02 21:18:04 jeffc] | |
41 | * | |
42 | * Revision 1.2 1993/04/19 16:39:03 devrcs | |
43 | * ansi C conformance changes | |
44 | * [1993/02/02 18:54:26 david] | |
45 | * | |
46 | * Revision 1.1 1992/09/30 02:32:04 robert | |
47 | * Initial revision | |
48 | * | |
49 | * $EndLog$ | |
50 | */ | |
51 | /* | |
52 | * Mach Operating System | |
53 | * Copyright (c) 1991,1990,1989 Carnegie Mellon University | |
54 | * All Rights Reserved. | |
55 | * | |
56 | * Permission to use, copy, modify and distribute this software and its | |
57 | * documentation is hereby granted, provided that both the copyright | |
58 | * notice and this permission notice appear in all copies of the | |
59 | * software, derivative works or modified versions, and any portions | |
60 | * thereof, and that both notices appear in supporting documentation. | |
61 | * | |
62 | * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" | |
63 | * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR | |
64 | * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. | |
65 | * | |
66 | * Carnegie Mellon requests users of this software to return to | |
67 | * | |
68 | * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU | |
69 | * School of Computer Science | |
70 | * Carnegie Mellon University | |
71 | * Pittsburgh PA 15213-3890 | |
72 | * | |
73 | * any improvements or extensions that they make and grant Carnegie Mellon | |
74 | * the rights to redistribute these changes. | |
75 | */ | |
76 | /* | |
77 | */ | |
78 | ||
79 | #ifndef _MACH_PROF_TYPES_H | |
80 | #define _MACH_PROF_TYPES_H | |
81 | ||
82 | #define SAMPLE_MAX 256 /* Max array size */ | |
83 | typedef unsigned sample_array_t[SAMPLE_MAX]; | |
84 | ||
85 | #endif /* _MACH_PROF_TYPES_H */ |