From owner-p4-projects Sat Aug 24 3:26:14 2002 Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 8907737B401; Sat, 24 Aug 2002 03:26:10 -0700 (PDT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C0B737B400 for ; Sat, 24 Aug 2002 03:26:10 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D228743E6E for ; Sat, 24 Aug 2002 03:26:09 -0700 (PDT) (envelope-from peter@freebsd.org) Received: from freefall.freebsd.org (perforce@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g7OAQ9JU077707 for ; Sat, 24 Aug 2002 03:26:09 -0700 (PDT) (envelope-from peter@freebsd.org) Received: (from perforce@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g7OAQ9s6077704 for perforce@freebsd.org; Sat, 24 Aug 2002 03:26:09 -0700 (PDT) Date: Sat, 24 Aug 2002 03:26:09 -0700 (PDT) Message-Id: <200208241026.g7OAQ9s6077704@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: perforce set sender to peter@freebsd.org using -f From: Peter Wemm Subject: PERFORCE change 16499 for review To: Perforce Change Reviews Sender: owner-p4-projects@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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