From owner-svn-src-all@FreeBSD.ORG Sun May 22 08:58:14 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C971106566C; Sun, 22 May 2011 08:58:14 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-gy0-f182.google.com (mail-gy0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id 838EA8FC0A; Sun, 22 May 2011 08:58:13 +0000 (UTC) Received: by gyg13 with SMTP id 13so2248515gyg.13 for ; Sun, 22 May 2011 01:58:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=1GdsAvkOe4OGNZQdb91YIIqMe2v+0nHvL/6pu/gjY7c=; b=kD6kurqzy+f7uSiiCLoq8rPJ/4aGoYghA1mwK72ftCmJPb7ZUodRJHVSdvZvqY9BV2 uLChT+B45jpXYd71vuE/jPPPO6dUn7uJykkthepIIvCyt/G7ycwwmxi8opFOg1LeEsAi pzgDONg50Cc+nHm8Yt3+qFh5Vf7Leh1lX1FSg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=qTQDvPS2wk1YRBvIOwpIMq+NJTJyKj7NJMTbP3X7Fqw261/HH0DEpw+qqd5jRBrNSN h9MMvPhSMQ6oCjH6SPD+b2pVZJI9SbGMFuc/VtT8KbIvPEvAaWhPRj8iHOJo0V9SkSEX gUhX6bMLorfuTIvbNIDyPuGIWA2qeWK1Hx2iA= MIME-Version: 1.0 Received: by 10.150.198.16 with SMTP id v16mr1690997ybf.190.1306054692679; Sun, 22 May 2011 01:58:12 -0700 (PDT) Sender: adrian.chadd@gmail.com Received: by 10.150.91.12 with HTTP; Sun, 22 May 2011 01:58:12 -0700 (PDT) In-Reply-To: References: <201011121302.oACD2Qjt009385@svn.freebsd.org> Date: Sun, 22 May 2011 16:58:12 +0800 X-Google-Sender-Auth: gfTPKz9xgsAwKpud7gcGVyrOllM Message-ID: From: Adrian Chadd To: Ivan Voras Content-Type: text/plain; charset=ISO-8859-1 Cc: svn-src-head@freebsd.org, Luigi Rizzo , src-committers@freebsd.org, svn-src-all@freebsd.org Subject: Re: svn commit: r215178 - in head: lib/libc/sys sys/kern sys/sys X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2011 08:58:14 -0000 On 15 November 2010 19:56, Ivan Voras wrote: > While at it, why not intptr_t? It would be marginally more useful and > almost free. Because it can lead to code choices that use the whole 64 bit space for something other than a single 32 bit integer (say, four 16 bit words all packed together) which suddenly finds itself breaking on 32 bit platforms. Not that any fine FreeBSD programmers would make such a mistake. :) I agree with Luigi. Adrian