- VM_KERN_NOPAGEZERO feature is gone
- 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
This commit is contained in:
18
include/sys/timeb.h
Normal file
18
include/sys/timeb.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#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 */
|
||||
Reference in New Issue
Block a user