From owner-cvs-src-old@FreeBSD.ORG Sat Jan 8 12:43:20 2011 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F36B10656B2 for ; Sat, 8 Jan 2011 12:43:20 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 895958FC13 for ; Sat, 8 Jan 2011 12:43:20 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p08ChKpS001800 for ; Sat, 8 Jan 2011 12:43:20 GMT (envelope-from tijl@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p08ChKxc001799 for cvs-src-old@freebsd.org; Sat, 8 Jan 2011 12:43:20 GMT (envelope-from tijl@repoman.freebsd.org) Message-Id: <201101081243.p08ChKxc001799@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to tijl@repoman.freebsd.org using -f From: Tijl Coosemans Date: Sat, 8 Jan 2011 12:43:05 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/include _stdint.h src/sys/arm/include _stdint.h src/sys/i386/include _stdint.h src/sys/ia64/include _stdint.h src/sys/mips/include _inttypes.h _stdint.h _types.h src/sys/powerpc/include _inttypes.h _limits.h _stdint.h _types.h ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Jan 2011 12:43:20 -0000 tijl 2011-01-08 12:43:05 UTC FreeBSD src repository Modified files: sys/amd64/include _stdint.h sys/arm/include _stdint.h sys/i386/include _stdint.h sys/ia64/include _stdint.h sys/mips/include _inttypes.h _stdint.h _types.h sys/powerpc/include _inttypes.h _limits.h _stdint.h _types.h sys/sparc64/include _stdint.h sys/sun4v/include _stdint.h Log: SVN rev 217147 on 2011-01-08 12:43:05Z by tijl On mixed 32/64 bit architectures (mips, powerpc) use __LP64__ rather than architecture macros (__mips_n64, __powerpc64__) when 64 bit types (and corresponding macros) are different from 32 bit. [1] Correct the type of INT64_MIN, INT64_MAX and UINT64_MAX. Define (U)INTMAX_C as an alias for (U)INT64_C matching the type definition for (u)intmax_t. Do this on all architectures for consistency. Suggested by: bde [1] Approved by: kib (mentor) Revision Changes Path 1.4 +2 -2 src/sys/amd64/include/_stdint.h 1.4 +2 -2 src/sys/arm/include/_stdint.h 1.3 +2 -2 src/sys/i386/include/_stdint.h 1.4 +2 -2 src/sys/ia64/include/_stdint.h 1.4 +1 -1 src/sys/mips/include/_inttypes.h 1.3 +19 -26 src/sys/mips/include/_stdint.h 1.4 +8 -11 src/sys/mips/include/_types.h 1.5 +1 -1 src/sys/powerpc/include/_inttypes.h 1.33 +1 -1 src/sys/powerpc/include/_limits.h 1.4 +10 -19 src/sys/powerpc/include/_stdint.h 1.10 +4 -4 src/sys/powerpc/include/_types.h 1.3 +2 -2 src/sys/sparc64/include/_stdint.h 1.2 +2 -2 src/sys/sun4v/include/_stdint.h