From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Benjamin Herrenschmidt To: Tom Gall In-Reply-To: References: Content-Type: text/plain Date: Sat, 12 Nov 2005 09:13:28 +1100 Message-Id: <1131747209.24637.255.camel@gaston> Mime-Version: 1.0 Cc: linuxppc64-dev@ozlabs.org, munroesj@us.ibm.com, libc-alpha@sources.redhat.com, linuxppc-dev@ozlabs.org Subject: Re: [PATCH] glibc vDSO bits for ppc/ppc64 update List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , > Additional hp_timer_t is now declared as unsigned long long int > to match up with benh's get_tbfreq on 32 bit ppc. (ppc64 is already > 64 bit) I'm not sure having hp_timer_t be 64 bits on 32 bits libraries is the right thing to do. I suppose it's a matter of performances tradeoff. The fact that the vDSO __kernel_get_tbfreq() returns a long long doesn't force you to use a long long hp_timer_t, the vDSO doesn't have to return a value of type hp_timer_t :) I did that on the vDSO to avoid having to change the vDSO interface if we ever have to deal with >4Ghz time sources. Ben.