Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 24 Aug 2002 03:26:09 -0700 (PDT)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 16499 for review
Message-ID:  <200208241026.g7OAQ9s6077704@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=16499

Change 16499 by peter@peter_daintree on 2002/08/24 03:25:33

	Well, that was painless.  I could boot 64 bit time_t kernel with a
	32 bit time_t userland without much excitement at all.  This is
	probably mostly because gettimeofday etc have 'long tv_sec' etc
	in struct timeval.  The trouble only started after installing a new
	libc which tries to write a 64 bit long in time(&foo) and find(1)
	tripped it up right at the end of the install (and continued).
	This probably breaks ia32 emulation.

Affected files ...

.. //depot/projects/ia64/sys/ia64/include/_types.h#2 edit

Differences ...

==== //depot/projects/ia64/sys/ia64/include/_types.h#2 (text+ko) ====

@@ -72,7 +72,7 @@
 typedef	__int64_t	__segsz_t;		/* segment size (in pages) */
 typedef	__uint64_t	__size_t;		/* sizeof() */
 typedef	__int64_t	__ssize_t;		/* byte count or error */
-typedef	__int32_t	__time_t;		/* time()... */
+typedef	__int64_t	__time_t;		/* time()... */
 typedef	__uint64_t	__uintfptr_t;
 typedef	__uint64_t	__uintmax_t;
 typedef	__uint64_t	__uintptr_t;

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200208241026.g7OAQ9s6077704>