]> git.saurik.com Git - apple/xnu.git/blob - bsd/sys/version.h
1847ed030c65c3a103de88c563aad528c31d31c8
[apple/xnu.git] / bsd / sys / version.h
1 /*
2 * Copyright (c) 2004 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
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
11 * file.
12 *
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.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23 /*
24 * Mach Operating System
25 * Copyright (c) 1987 Carnegie-Mellon University
26 * All rights reserved. The CMU software License Agreement specifies
27 * the terms and conditions for use and redistribution.
28 */
29 /*
30 * File: sys/version.h
31 *
32 * HISTORY
33 * 29-Oct-86 Avadis Tevanian (avie) at Carnegie-Mellon University
34 * Created.
35 */
36
37 /*
38 * Each kernel has a major and minor version number. Changes in
39 * the major number in general indicate a change in exported features.
40 * Changes in minor number usually correspond to internal-only
41 * changes that the user need not be aware of (in general). These
42 * values are stored at boot time in the machine_info strucuture and
43 * can be obtained by user programs with the host_info kernel call.
44 * This mechanism is intended to be the formal way for Mach programs
45 * to provide for backward compatibility in future releases.
46 *
47 * Following is an informal history of the numbers:
48 *
49 * 20-Mar-1998 Umesh Vaishampayan
50 * MacOSX DR2
51 *
52 * 28-Sep-94 ?
53 * NEXTSTEP Release 4.0.
54 *
55 * 03-Sep-91 Doug Mitchell
56 * Major 3 for NeXT release 3.0.
57 *
58 * 04-Mar-90 Avadis Tevanian, Jr.
59 * Major 2, minor 0 for NeXT release 2.0.
60 *
61 * 11-May-89 Avadis Tevanian, Jr.
62 * Advance version to major 1, minor 0 to conform to NeXT
63 * release 1.0.
64 *
65 * 05-December-88 Avadis Tevanian, Jr.
66 * Aborted previous numbering, set major to 0, minor to 9
67 * to conform to NeXT's 0.9 release.
68 *
69 * 25-March-87 Avadis Tevanian, Jr.
70 * Created version numbering scheme. Started with major 1,
71 * minor 0.
72 */
73 #ifndef _SYS_VERSION_H_
74 #define _SYS_VERSION_H_
75
76 #define KERNEL_MAJOR_VERSION 10
77 #define KERNEL_MINOR_VERSION 0
78
79 #endif /* ! _SYS_VERSION_H_ */