From owner-freebsd-questions@FreeBSD.ORG Mon May 25 11:48:25 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8F808106566B for ; Mon, 25 May 2009 11:48:25 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id 48DA48FC1D for ; Mon, 25 May 2009 11:48:24 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1M8YfF-0002AF-Gy for freebsd-questions@freebsd.org; Mon, 25 May 2009 11:48:21 +0000 Received: from pool-70-21-26-233.res.east.verizon.net ([70.21.26.233]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 25 May 2009 11:48:21 +0000 Received: from nightrecon by pool-70-21-26-233.res.east.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 25 May 2009 11:48:21 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Followup-To: gmane.os.freebsd.questions Date: Mon, 25 May 2009 07:49:46 -0400 Lines: 28 Message-ID: References: <717ed9590905250355o3f3b836bm9e2e5abee03d50b2@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: pool-70-21-26-233.res.east.verizon.net Sender: news Subject: Re: why integer size says 4 bytes on 64 bit processor X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nightrecon@verizon.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 May 2009 11:48:25 -0000 Shakil Khan wrote: > Hi All, > > Pardon me if I am writing this mail to the wrong group as I am too new to > BSD and programming stuff. You can redirect me to right group without > howling. By seeing some recent conversations(About the top status ;)) in > this group it made me nervous to ask for a silly question like this, but > it intrigued my mind too much so thought to delve into it keeping aside my > fear. > > I have a 64bit intel processor, Dual core machine and I have installed 64 > bit Linux as well as FreeBSD and thought of seeing the size of integer. On > both the platform my integer is showing 4 bytes which is 32 bit. I thought > integer are the most basic of the data types and governs the architecture > as 32 bit or 64 bit, so why integer shows me 4bytes instead of 8. Does > this means that even on 64 bit architecture we are limited to just 4GB of > RAM. > No, because INT is not the only variable type available for numerical operations. Long and Long Long are 64 bits, and utilizing these types allows for larger than 4GB RAM addressing. -Mike