1*8d741a5dSApple OSS Distributions /* 2*8d741a5dSApple OSS Distributions * Copyright (c) 2004 Apple Computer, Inc. All rights reserved. 3*8d741a5dSApple OSS Distributions * 4*8d741a5dSApple OSS Distributions * @APPLE_LICENSE_HEADER_START@ 5*8d741a5dSApple OSS Distributions * 6*8d741a5dSApple OSS Distributions * The contents of this file constitute Original Code as defined in and 7*8d741a5dSApple OSS Distributions * are subject to the Apple Public Source License Version 1.1 (the 8*8d741a5dSApple OSS Distributions * "License"). You may not use this file except in compliance with the 9*8d741a5dSApple OSS Distributions * License. Please obtain a copy of the License at 10*8d741a5dSApple OSS Distributions * http://www.apple.com/publicsource and read it before using this file. 11*8d741a5dSApple OSS Distributions * 12*8d741a5dSApple OSS Distributions * This Original Code and all software distributed under the License are 13*8d741a5dSApple OSS Distributions * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER 14*8d741a5dSApple OSS Distributions * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 15*8d741a5dSApple OSS Distributions * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 16*8d741a5dSApple OSS Distributions * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the 17*8d741a5dSApple OSS Distributions * License for the specific language governing rights and limitations 18*8d741a5dSApple OSS Distributions * under the License. 19*8d741a5dSApple OSS Distributions * 20*8d741a5dSApple OSS Distributions * @APPLE_LICENSE_HEADER_END@ 21*8d741a5dSApple OSS Distributions */ 22*8d741a5dSApple OSS Distributions #ifndef _I386__LIMITS_H_ 23*8d741a5dSApple OSS Distributions #define _I386__LIMITS_H_ 24*8d741a5dSApple OSS Distributions 25*8d741a5dSApple OSS Distributions #if defined (__i386__) || defined (__x86_64__) 26*8d741a5dSApple OSS Distributions 27*8d741a5dSApple OSS Distributions #define __DARWIN_CLK_TCK 100 /* ticks per second */ 28*8d741a5dSApple OSS Distributions 29*8d741a5dSApple OSS Distributions #endif /* defined (__i386__) || defined (__x86_64__) */ 30*8d741a5dSApple OSS Distributions 31*8d741a5dSApple OSS Distributions #endif /* _I386__LIMITS_H_ */ 32