diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/mach/getloadavg.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2000-09-11 Mark Kettenis <kettenis@gnu.org> + + * sysdeps/mach/getloadavg.c (getloadavg): Divide instead of + multiply by LOAD_SCALE. + 2000-09-22 Jakub Jelinek <jakub@redhat.com> * crypt/crypt.h (crypt, setkey, encrypt): Add __THROW. diff --git a/sysdeps/mach/getloadavg.c b/sysdeps/mach/getloadavg.c index b185b6b62f..30a196ba4a 100644 --- a/sysdeps/mach/getloadavg.c +++ b/sysdeps/mach/getloadavg.c @@ -1,5 +1,5 @@ /* Get system load averages. Mach version. - Copyright (C) 1999 Free Software Foundation, Inc. + Copyright (C) 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -48,7 +48,7 @@ getloadavg (double loadavg[], int nelem) if (nelem > 3) nelem = 3; for (i = 0; i < nelem; ++i) - loadavg[i] = (double) info.avenrun[i] * (double) LOAD_SCALE; + loadavg[i] = (double) info.avenrun[i] / (double) LOAD_SCALE; return i; } |