|
NAME
LIBRARYSystem Utilities Library (libutil, -lutil) SYNOPSIS
int
DESCRIPTIONThis interface is obsoleted by
gettimeofday(2).
The
/*
* Structure returned by ftime system call
*/
struct timeb
{
time_t time;
unsigned short millitm;
short timezone;
short dstflag;
};
The structure contains the time since the epoch in seconds, up to 1000 milliseconds of more-precise interval, The kernel no longer maintains the timezone and dstflag info, so 0 is always returned for these fields. SEE ALSOHISTORYThe
|