1 /* Get frequency of the system processor. IA-64/Linux version.
2 Copyright (C) 2001 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
24 #include <libc-internal.h>
28 __get_clockfreq (void)
30 /* We read the information from the /proc filesystem. It contains at
33 We search for this line and convert the number in an integer. */
34 static hp_timing_t result
;
37 /* If this function was called before, we know the result. */
41 fd
= open ("/proc/cpuinfo", O_RDONLY
);
42 if (__builtin_expect (fd
!= -1, 1))
44 /* XXX AFAIK the /proc filesystem can generate "files" only up
45 to a size of 4096 bytes. */
49 n
= read (fd
, buf
, sizeof buf
);
50 if (__builtin_expect (n
, 1) > 0)
52 char *mhz
= memmem (buf
, n
, "itc MHz", 7);
54 if (__builtin_expect (mhz
!= NULL
, 1))
57 int seen_decpoint
= 0;
60 /* Search for the beginning of the string. */
61 while (mhz
< endp
&& (*mhz
< '0' || *mhz
> '9') && *mhz
!= '\n')
64 while (mhz
< endp
&& *mhz
!= '\n')
66 if (*mhz
>= '0' && *mhz
<= '9')
79 /* Compensate for missing digits at the end. */