]>
Commit | Line | Data |
---|---|---|
1c79356b | 1 | /* |
5d5c5d0d A |
2 | * Copyright (c) 2004 Apple Computer, Inc. All rights reserved. |
3 | * | |
8f6c56a5 | 4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ |
1c79356b | 5 | * |
8f6c56a5 A |
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. The rights granted to you under the License | |
10 | * may not be used to create, or enable the creation or redistribution of, | |
11 | * unlawful or unlicensed copies of an Apple operating system, or to | |
12 | * circumvent, violate, or enable the circumvention or violation of, any | |
13 | * terms of an Apple operating system software license agreement. | |
14 | * | |
15 | * Please obtain a copy of the License at | |
16 | * http://www.opensource.apple.com/apsl/ and read it before using this file. | |
17 | * | |
18 | * The Original Code and all software distributed under the License are | |
19 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
22 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. | |
23 | * Please see the License for the specific language governing rights and | |
8ad349bb | 24 | * limitations under the License. |
8f6c56a5 A |
25 | * |
26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ | |
1c79356b A |
27 | */ |
28 | /* | |
29 | * Mach Operating System | |
30 | * Copyright (c) 1987 Carnegie-Mellon University | |
31 | * All rights reserved. The CMU software License Agreement specifies | |
32 | * the terms and conditions for use and redistribution. | |
33 | */ | |
34 | /* | |
35 | * File: sys/version.h | |
36 | * | |
37 | * HISTORY | |
38 | * 29-Oct-86 Avadis Tevanian (avie) at Carnegie-Mellon University | |
39 | * Created. | |
40 | */ | |
41 | ||
42 | /* | |
43 | * Each kernel has a major and minor version number. Changes in | |
44 | * the major number in general indicate a change in exported features. | |
45 | * Changes in minor number usually correspond to internal-only | |
46 | * changes that the user need not be aware of (in general). These | |
47 | * values are stored at boot time in the machine_info strucuture and | |
48 | * can be obtained by user programs with the host_info kernel call. | |
49 | * This mechanism is intended to be the formal way for Mach programs | |
50 | * to provide for backward compatibility in future releases. | |
51 | * | |
52 | * Following is an informal history of the numbers: | |
53 | * | |
54 | * 20-Mar-1998 Umesh Vaishampayan | |
55 | * MacOSX DR2 | |
56 | * | |
57 | * 28-Sep-94 ? | |
58 | * NEXTSTEP Release 4.0. | |
59 | * | |
60 | * 03-Sep-91 Doug Mitchell | |
61 | * Major 3 for NeXT release 3.0. | |
62 | * | |
63 | * 04-Mar-90 Avadis Tevanian, Jr. | |
64 | * Major 2, minor 0 for NeXT release 2.0. | |
65 | * | |
66 | * 11-May-89 Avadis Tevanian, Jr. | |
67 | * Advance version to major 1, minor 0 to conform to NeXT | |
68 | * release 1.0. | |
69 | * | |
70 | * 05-December-88 Avadis Tevanian, Jr. | |
71 | * Aborted previous numbering, set major to 0, minor to 9 | |
72 | * to conform to NeXT's 0.9 release. | |
73 | * | |
74 | * 25-March-87 Avadis Tevanian, Jr. | |
75 | * Created version numbering scheme. Started with major 1, | |
76 | * minor 0. | |
77 | */ | |
78 | #ifndef _SYS_VERSION_H_ | |
79 | #define _SYS_VERSION_H_ | |
80 | ||
81 | #define KERNEL_MAJOR_VERSION 10 | |
82 | #define KERNEL_MINOR_VERSION 0 | |
83 | ||
84 | #endif /* ! _SYS_VERSION_H_ */ |