X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2Finclude%2Fsys%2Ftypes.h;h=4e38de37ada12fe90a513fbba79f904c1fe2318f;hb=a247aec9111b29faf9200ebff7dc0f476f0babc9;hp=edcaa2243e8729ad527777518425394fb37b0d5b;hpb=11686aa86bc0adae2555aa7796fe229770bb02f7;p=tpg%2Facess2.git diff --git a/Usermode/include/sys/types.h b/Usermode/include/sys/types.h index edcaa224..4e38de37 100644 --- a/Usermode/include/sys/types.h +++ b/Usermode/include/sys/types.h @@ -3,6 +3,8 @@ #ifndef _SYS_TYPES_H #define _SYS_TYPES_H +#include "../acess/intdefs.h" + typedef struct stat t_fstat; #define FD_SETSIZE 128 @@ -12,7 +14,8 @@ typedef struct stat t_fstat; typedef unsigned long pid_t; typedef unsigned long tid_t; -typedef signed long long time_t; +typedef signed long long int time_t; +typedef long long int off_t; typedef unsigned int uint; @@ -42,7 +45,7 @@ struct s_sysFInfo { time_t ctime; int numacls; struct s_sysACL acls[]; -}; +} __attribute__((packed)); typedef struct s_sysFInfo t_sysFInfo; typedef struct s_sysACL t_sysACL; @@ -51,6 +54,10 @@ extern void FD_CLR(int fd, fd_set *fdsetp); extern void FD_SET(int fd, fd_set *fdsetp); extern int FD_ISSET(int fd, fd_set *fdsetp); -#include +typedef __uint8_t u_int8_t; +typedef __uint16_t u_int16_t; +typedef __uint32_t u_int32_t; + +#include "../sys/stat.h" #endif