8a54d267f0
- sys_getbiosbuffer feature is gone (from kernel; available from vm) - bump version number because munmap() calls that newly compiled binaries will do trigger an ugly (but harmless) error message in older VM's - some new VM calls and flags, the new IPC calls - some new CR0 register bits - added files for shared memory
18 lines
493 B
C
18 lines
493 B
C
#ifndef _SYS__TIMEB_H
|
|
#define _SYS__TIMEB_H
|
|
|
|
#include <time.h>
|
|
|
|
struct timeb
|
|
{
|
|
time_t time; /* Seconds since epoch, as from `time'. */
|
|
unsigned short int millitm; /* Additional milliseconds. */
|
|
short int timezone; /* Minutes west of GMT. */
|
|
short int dstflag; /* Nonzero if Daylight Savings Time used. */
|
|
};
|
|
|
|
/* Fill in TIMEBUF with information about the current time. */
|
|
|
|
_PROTOTYPE( int ftime, (struct timeb *__timebuf));
|
|
|
|
#endif /* _SYS__TIMEB_H */
|