mirror of
https://sourceware.org/git/glibc.git
synced 2025-12-24 17:51:17 +03:00
* sysdeps/mach/getloadavg.c (getloadavg): Divide instead of multiply by LOAD_SCALE.
2000-09-11 Mark Kettenis <kettenis@gnu.org> * sysdeps/mach/getloadavg.c (getloadavg): Divide instead of multiply by LOAD_SCALE.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user