mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
973 B
26 lines
973 B
/*[
|
|
*************************************************************************
|
|
|
|
Name: timestmp.h
|
|
Author: Simon Frost
|
|
Created: May 1994
|
|
Derived from: Original
|
|
Sccs ID: @(#)timestmp.h 1.1 06/27/94
|
|
Purpose: Include file for timestamp data structures & functions
|
|
|
|
(c)Copyright Insignia Solutions Ltd., 1994. All rights reserved.
|
|
|
|
Note: these timestamp functions are used by the quick event system to
|
|
recalibrate the time convertion. Functionally, they may be the same as
|
|
those used for the profiling system, but are declared seperately as the
|
|
same mechanism may not be suitable for both uses.
|
|
*************************************************************************
|
|
]*/
|
|
/* main data structure for timestamp functions to manipulate */
|
|
typedef struct {
|
|
IUH data[2];
|
|
} QTIMESTAMP, *QTIMESTAMP_PTR;
|
|
|
|
void host_q_timestamp_init IPT0();
|
|
IUH host_q_timestamp_diff IPT2(QTIMESTAMP_PTR, tbegin, QTIMESTAMP_PTR, tend);
|
|
void host_q_write_timestamp IPT1(QTIMESTAMP_PTR, stamp);
|