]>
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 * 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@
26 * @OSF_FREE_COPYRIGHT@
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:46 wsanchez
35 * Import of OSF Mach kernel (~mburg)
37 * Revision 1.2.7.2 1995/01/26 22:15:46 ezf
39 * [1995/01/26 21:16:02 ezf]
41 * Revision 1.2.3.2 1993/06/09 02:43:16 gm
42 * Added to OSF/1 R1.3 from NMK15.0.
43 * [1993/06/02 21:18:04 jeffc]
45 * Revision 1.2 1993/04/19 16:39:03 devrcs
46 * ansi C conformance changes
47 * [1993/02/02 18:54:26 david]
49 * Revision 1.1 1992/09/30 02:32:04 robert
55 * Mach Operating System
56 * Copyright (c) 1991,1990,1989 Carnegie Mellon University
57 * All Rights Reserved.
59 * Permission to use, copy, modify and distribute this software and its
60 * documentation is hereby granted, provided that both the copyright
61 * notice and this permission notice appear in all copies of the
62 * software, derivative works or modified versions, and any portions
63 * thereof, and that both notices appear in supporting documentation.
65 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
66 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
67 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
69 * Carnegie Mellon requests users of this software to return to
71 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
72 * School of Computer Science
73 * Carnegie Mellon University
74 * Pittsburgh PA 15213-3890
76 * any improvements or extensions that they make and grant Carnegie Mellon
77 * the rights to redistribute these changes.
82 #ifndef _MACH_PROF_TYPES_H
83 #define _MACH_PROF_TYPES_H
85 #define SAMPLE_MAX 256 /* Max array size */
86 typedef unsigned sample_array_t
[SAMPLE_MAX
];
88 #endif /* _MACH_PROF_TYPES_H */