]>
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 * 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.
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
20 * @APPLE_LICENSE_HEADER_END@
23 * @OSF_FREE_COPYRIGHT@
28 * Revision 1.1.1.1 1998/09/22 21:05:30 wsanchez
29 * Import of Mac OS X kernel (~semeria)
31 * Revision 1.1.1.1 1998/03/07 02:25:46 wsanchez
32 * Import of OSF Mach kernel (~mburg)
34 * Revision 1.2.7.2 1995/01/26 22:15:46 ezf
36 * [1995/01/26 21:16:02 ezf]
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]
42 * Revision 1.2 1993/04/19 16:39:03 devrcs
43 * ansi C conformance changes
44 * [1993/02/02 18:54:26 david]
46 * Revision 1.1 1992/09/30 02:32:04 robert
52 * Mach Operating System
53 * Copyright (c) 1991,1990,1989 Carnegie Mellon University
54 * All Rights Reserved.
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.
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.
66 * Carnegie Mellon requests users of this software to return to
68 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
69 * School of Computer Science
70 * Carnegie Mellon University
71 * Pittsburgh PA 15213-3890
73 * any improvements or extensions that they make and grant Carnegie Mellon
74 * the rights to redistribute these changes.
79 #ifndef _MACH_PROF_TYPES_H
80 #define _MACH_PROF_TYPES_H
82 #define SAMPLE_MAX 256 /* Max array size */
83 typedef unsigned sample_array_t
[SAMPLE_MAX
];
85 #endif /* _MACH_PROF_TYPES_H */