From: "John Fremlin" <vii@altern.org>
To: "Albert D. Cahalan" <acahalan@cs.uml.edu>
Cc: "Pierre Rousselet" <pierre.rousselet@wanadoo.fr>,
<linux-kernel@vger.kernel.org>
Subject: Re: 2.4.0-x features ?
Date: 16 Jan 2001 13:14:18 +0000 [thread overview]
Message-ID: <m2wvbvod05.fsf@boreas.yi.org.> (raw)
In-Reply-To: <200101151959.f0FJxDB248265@saturn.cs.uml.edu>
In-Reply-To: "Albert D. Cahalan"'s message of "Mon, 15 Jan 2001 14:59:13 -0500 (EST)"
[-- Attachment #1: Type: text/plain, Size: 464 bytes --]
"Albert D. Cahalan" <acahalan@cs.uml.edu> writes:
> > 1) top (procps-2.0.7) gives me the messages :
> > 'bad data in /proc/uptime'
> > 'bad data in /proc/loadavg'
> > cat /proc/uptime
> > 1435.30 904.74
> > cat /proc/loadavg
> > 0.01 0.21 0.29 1/17 19444
> > What is wrong ?
You probably have locale settings where the decimal point is a comma
so scanf on /proc/loadavg etc. doesn't work. The following patch
(submitted to RedHat ages ago) fixes that for me.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: procps-2.0.7-intl.patch --]
[-- Type: text/x-patch, Size: 1962 bytes --]
diff -u --recursive procps-2.0.7-orig/proc/sysinfo.c procps-2.0.7-hacked/proc/sysinfo.c
--- procps-2.0.7-orig/proc/sysinfo.c Mon Jul 10 20:36:13 2000
+++ procps-2.0.7-hacked/proc/sysinfo.c Wed Nov 29 23:11:41 2000
@@ -13,6 +13,8 @@
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
+#include <locale.h>
+#include <assert.h>
#include <unistd.h>
#include <fcntl.h>
@@ -62,12 +64,19 @@
/***********************************************************************/
int uptime(double *uptime_secs, double *idle_secs) {
double up=0, idle=0;
+ char*numeric=setlocale(LC_NUMERIC,0);
+ /* It is necessary to save and restore the numeric locale, because
+ if the locale we're in happens to use , instead of decimal point,
+ we can't sscanf the values in /proc/uptime */
+ setlocale(LC_NUMERIC,"C");
FILE_TO_BUF(UPTIME_FILE,uptime_fd);
if (sscanf(buf, "%lf %lf", &up, &idle) < 2) {
fprintf(stderr, "bad data in " UPTIME_FILE "\n");
return 0;
}
+ setlocale(LC_NUMERIC,numeric);
+
SET_IF_DESIRED(uptime_secs, up);
SET_IF_DESIRED(idle_secs, idle);
return up; /* assume never be zero seconds in practice */
@@ -171,12 +180,20 @@
/***********************************************************************/
int loadavg(double *av1, double *av5, double *av15) {
double avg_1=0, avg_5=0, avg_15=0;
+ /* It is necessary to save and restore the numeric locale, because
+ if the locale we're in happens to use , instead of decimal point,
+ we can't sscanf the values in /proc/loadavg */
+ char*numeric=setlocale(LC_NUMERIC,0);
+ setlocale(LC_NUMERIC,"C");
FILE_TO_BUF(LOADAVG_FILE,loadavg_fd);
if (sscanf(buf, "%lf %lf %lf", &avg_1, &avg_5, &avg_15) < 3) {
fprintf(stderr, "bad data in " LOADAVG_FILE "\n");
exit(1);
+
}
+ setlocale(LC_NUMERIC,numeric);
+
SET_IF_DESIRED(av1, avg_1);
SET_IF_DESIRED(av5, avg_5);
SET_IF_DESIRED(av15, avg_15);
[-- Attachment #3: Type: text/plain, Size: 50 bytes --]
[...]
--
http://www.penguinpowered.com/~vii
next prev parent reply other threads:[~2001-01-16 17:13 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-01-15 5:19 2.4.0-x features ? Pierre Rousselet
2001-01-15 19:59 ` Albert D. Cahalan
2001-01-16 13:14 ` John Fremlin [this message]
2001-01-16 21:50 ` Pierre Rousselet
2001-01-16 22:18 ` Pierre Rousselet
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=m2wvbvod05.fsf@boreas.yi.org. \
--to=vii@altern.org \
--cc=acahalan@cs.uml.edu \
--cc=linux-kernel@vger.kernel.org \
--cc=pierre.rousselet@wanadoo.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.