version.h   [plain text]


/*
 * Copyright (c) 2004 Apple Computer, Inc. All rights reserved.
 *
 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
 * 
 * This file contains Original Code and/or Modifications of Original Code
 * as defined in and that are subject to the Apple Public Source License
 * Version 2.0 (the 'License'). You may not use this file except in
 * compliance with the License. The rights granted to you under the License
 * may not be used to create, or enable the creation or redistribution of,
 * unlawful or unlicensed copies of an Apple operating system, or to
 * circumvent, violate, or enable the circumvention or violation of, any
 * terms of an Apple operating system software license agreement.
 * 
 * Please obtain a copy of the License at
 * http://www.opensource.apple.com/apsl/ and read it before using this file.
 * 
 * The Original Code and all software distributed under the License are
 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
 * Please see the License for the specific language governing rights and
 * limitations under the License.
 * 
 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
 */
/* 
 * Mach Operating System
 * Copyright (c) 1987 Carnegie-Mellon University
 * All rights reserved.  The CMU software License Agreement specifies
 * the terms and conditions for use and redistribution.
 */
/*
 *	File:	sys/version.h
 *
 * HISTORY
 * 29-Oct-86  Avadis Tevanian (avie) at Carnegie-Mellon University
 *	Created.
 */ 

/*
 *	Each kernel has a major and minor version number.  Changes in
 *	the major number in general indicate a change in exported features.
 *	Changes in minor number usually correspond to internal-only
 *	changes that the user need not be aware of (in general).  These
 *	values are stored at boot time in the machine_info strucuture and
 *	can be obtained by user programs with the host_info kernel call.
 *	This mechanism is intended to be the formal way for Mach programs
 *	to provide for backward compatibility in future releases.
 *
 *	Following is an informal history of the numbers:
 *
 *	20-Mar-1998	Umesh Vaishampayan
 *		MacOSX DR2
 *
 *	28-Sep-94 ?
 *		NEXTSTEP Release 4.0.
 *
 *	03-Sep-91 Doug Mitchell
 *		Major 3 for NeXT release 3.0.
 *
 *	04-Mar-90 Avadis Tevanian, Jr.
 *		Major 2, minor 0 for NeXT release 2.0.
 *
 *	11-May-89 Avadis Tevanian, Jr.
 *		Advance version to major 1, minor 0 to conform to NeXT
 *		release 1.0.
 *
 *	05-December-88 Avadis Tevanian, Jr.
 *		Aborted previous numbering, set major to 0, minor to 9
 *		to conform to NeXT's 0.9 release.
 *
 *	25-March-87  Avadis Tevanian, Jr.
 *		Created version numbering scheme.  Started with major 1,
 *		minor 0.
 */
#ifndef _SYS_VERSION_H_
#define _SYS_VERSION_H_

#define KERNEL_MAJOR_VERSION	10
#define KERNEL_MINOR_VERSION	0

#endif /* ! _SYS_VERSION_H_ */