add cpu_set_init_frame to initialize init's syscall frame
[unix-history] / usr / src / sys / vax / include / types.h
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
*
* %sccs.include.redist.c%
*
* @(#)types.h 7.9 (Berkeley) %G%
*/
#ifndef _MACHTYPES_H_
#define _MACHTYPES_H_
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
typedef struct _physadr {
int r[1];
} *physadr;
typedef struct label_t {
int val[14];
} label_t;
#endif
/*
* Basic integral types. Omit the typedef if
* not possible for a machine/compiler combination.
*/
typedef signed char int8_t;
typedef unsigned char u_int8_t;
typedef short int16_t;
typedef unsigned short u_int16_t;
typedef int int32_t;
typedef unsigned int u_int32_t;
typedef long long int64_t;
typedef unsigned long long u_int64_t;
#endif /* _MACHTYPES_H_ */