From b979607c782d8f185ab287097e3c9ac2bc5ab2bb Mon Sep 17 00:00:00 2001 From: cognet Date: Mon, 15 May 2006 00:17:27 +0000 Subject: Switch to a 64bit time_t, while it's not a big problem to do so. Suggested by: imp --- sys/arm/include/_types.h | 2 +- sys/sys/user.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arm/include/_types.h b/sys/arm/include/_types.h index c700f52..2b96d2e 100644 --- a/sys/arm/include/_types.h +++ b/sys/arm/include/_types.h @@ -87,7 +87,7 @@ typedef __int32_t __register_t; typedef __int32_t __segsz_t; /* segment size (in pages) */ typedef __uint32_t __size_t; /* sizeof() */ typedef __int32_t __ssize_t; /* byte count or error */ -typedef __int32_t __time_t; /* time()... */ +typedef __int64_t __time_t; /* time()... */ typedef __uint32_t __uintfptr_t; typedef __uint64_t __uintmax_t; typedef __uint32_t __uintptr_t; diff --git a/sys/sys/user.h b/sys/sys/user.h index abf880b..7509124 100644 --- a/sys/sys/user.h +++ b/sys/sys/user.h @@ -86,7 +86,7 @@ #define KINFO_PROC_SIZE 1088 #endif #ifdef __arm__ -#define KINFO_PROC_SIZE 768 /* value has not been tested... */ +#define KINFO_PROC_SIZE 792 #endif #ifdef __ia64__ #define KINFO_PROC_SIZE 1088 -- cgit v1.1