Source to osfmk/mach/sync_policy.h
/*
* Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
*
* @APPLE_LICENSE_HEADER_START@
*
* The contents of this file constitute Original Code as defined in and
* are subject to the Apple Public Source License Version 1.1 (the
* "License"). You may not use this file except in compliance with the
* License. Please obtain a copy of the License at
* http://www.apple.com/publicsource and read it before using this file.
*
* This 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 OR NON-INFRINGEMENT. Please see the
* License for the specific language governing rights and limitations
* under the License.
*
* @APPLE_LICENSE_HEADER_END@
*/
/*
* @OSF_COPYRIGHT@
*/
/*
* HISTORY
*
* Revision 1.1.1.1 1998/09/22 21:05:30 wsanchez
* Import of Mac OS X kernel (~semeria)
*
* Revision 1.1.1.1 1998/03/07 02:25:46 wsanchez
* Import of OSF Mach kernel (~mburg)
*
* Revision 1.1.4.1 1995/06/13 18:20:34 sjs
* Merged from flipc_shared.
* [95/06/07 sjs]
*
* Revision 1.1.2.1 1995/03/09 19:42:40 rwd
* Renamed from sync.h
* [95/03/09 rwd]
*
* Revision 1.1.4.3 1995/01/10 05:17:55 devrcs
* mk6 CR801 - copyright marker not FREE_
* [1994/12/01 19:25:17 dwm]
*
* Revision 1.1.4.1 1994/08/16 16:22:29 joe
* Original rt2_shared synchronizer code
* [1994/08/16 16:21:48 joe]
*
* Original rt2_shared version
* [1994/08/15 18:34:03 joe]
*
* Revision 1.1.2.1 1994/07/26 17:19:50 joe
* Initial check-in: Synchronizers Package
* [1994/07/26 17:18:46 joe]
*
* $EndLog$
*/
#ifndef _SYNC_POLICY_H_
#define _SYNC_POLICY_H_
#define SYNC_POLICY_FIFO 0
#define SYNC_POLICY_FIXED_PRIORITY 1
#define SYNC_POLICY_MAX 1
#endif /*_SYNC_POLICY_H_*/