Add posix clock and timer definitions

Obtained from: NetBSD
This commit is contained in:
Peter Wemm 1997-05-08 13:48:47 +00:00
parent 894c517fd6
commit 0f5ed9f420
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=25578
2 changed files with 16 additions and 2 deletions

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)time.h 8.5 (Berkeley) 5/4/95
* $Id: time.h,v 1.11 1997/02/22 09:46:08 peter Exp $
* $Id: time.h,v 1.12 1997/03/22 06:53:24 bde Exp $
*/
#ifndef _SYS_TIME_H_
@ -129,6 +129,13 @@ struct clockinfo {
int profhz; /* profiling clock frequency */
};
#define CLOCK_REALTIME 0
#define CLOCK_VIRTUAL 1
#define CLOCK_PROF 2
#define TIMER_RELTIME 0x0 /* relative timer */
#define TIMER_ABSTIME 0x1 /* absolute timer */
#ifdef KERNEL
void gettime __P((struct timeval *tv));
int itimerfix __P((struct timeval *tv));

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)time.h 8.5 (Berkeley) 5/4/95
* $Id: time.h,v 1.11 1997/02/22 09:46:08 peter Exp $
* $Id: time.h,v 1.12 1997/03/22 06:53:24 bde Exp $
*/
#ifndef _SYS_TIME_H_
@ -129,6 +129,13 @@ struct clockinfo {
int profhz; /* profiling clock frequency */
};
#define CLOCK_REALTIME 0
#define CLOCK_VIRTUAL 1
#define CLOCK_PROF 2
#define TIMER_RELTIME 0x0 /* relative timer */
#define TIMER_ABSTIME 0x1 /* absolute timer */
#ifdef KERNEL
void gettime __P((struct timeval *tv));
int itimerfix __P((struct timeval *tv));