[PATCH] trivial fix in get_clockfreq for powerpc
Jakub Jelinek
jakub@redhat.com
Thu Jan 5 20:19:00 GMT 2006
On Thu, Jan 05, 2006 at 02:18:35PM -0600, Tom Gall wrote:
>
> 2006-01-05 Tom Gall <tom_gall@vnet.ibm.com>
>
> * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c (__get_clockfreq):
> Initialize timebase_freq.
>
>
> diff -uNr libc.orig/sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c libc/sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c
> --- libc.orig/sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c 2006-01-06 22:22:34.000000000 +0000
> +++ libc/sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c 2006-01-06 22:23:51.000000000 +0000
> @@ -32,7 +32,7 @@
> contains at least one line like:
> timebase : 33333333
> We search for this line and convert the number into an integer. */
> - static hp_timing_t timebase_freq;
> + static hp_timing_t timebase_freq = 0L;
Fix? static variables are zero initialized by default...
> hp_timing_t result = 0L;
>
> /* If this function was called before, we know the result. */
Jakub
More information about the Libc-alpha
mailing list