clock.h revision 93120
1243789Sdim/*-
2243789Sdim * Copyright (c) 2001 Jake Burkholder.
3243789Sdim * All rights reserved.
4243789Sdim *
5243789Sdim * Redistribution and use in source and binary forms, with or without
6243789Sdim * modification, are permitted provided that the following conditions
7243789Sdim * are met:
8243789Sdim * 1. Redistributions of source code must retain the above copyright
9243789Sdim *    notice, this list of conditions and the following disclaimer.
10243789Sdim * 2. Redistributions in binary form must reproduce the above copyright
11243789Sdim *    notice, this list of conditions and the following disclaimer in the
12243789Sdim *    documentation and/or other materials provided with the distribution.
13243789Sdim *
14243789Sdim * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15243789Sdim * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16243789Sdim * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17243789Sdim * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18243789Sdim * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19243789Sdim * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20243789Sdim * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21243789Sdim * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22243789Sdim * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23243789Sdim * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24243789Sdim * SUCH DAMAGE.
25243789Sdim *
26243789Sdim * $FreeBSD: head/sys/sparc64/include/clock.h 93120 2002-03-25 04:53:18Z tmm $
27243789Sdim */
28243789Sdim
29243789Sdim#ifndef	_MACHINE_CLOCK_H_
30243789Sdim#define	_MACHINE_CLOCK_H_
31243789Sdim
32243789Sdimextern u_long tick_increment;
33243789Sdimextern u_long tick_freq;
34243789Sdimextern u_long tick_MHz;
35243789Sdim
36243789Sdim#endif /* !_MACHINE_CLOCK_H_ */
37243789Sdim