2022-05-27 20:25:46 +00:00
|
|
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
|
|
|
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
|
2020-06-15 14:18:57 +00:00
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
2022-05-27 20:25:46 +00:00
|
|
|
│ Copyright 2022 Justine Alexandra Roberts Tunney │
|
2020-06-15 14:18:57 +00:00
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
2020-06-15 14:18:57 +00:00
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
2020-06-15 14:18:57 +00:00
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2022-05-27 20:25:46 +00:00
|
|
|
#include "libc/calls/calls.h"
|
|
|
|
#include "libc/calls/syscall_support-nt.internal.h"
|
|
|
|
#include "libc/dce.h"
|
|
|
|
#include "libc/fmt/conv.h"
|
2021-03-01 07:42:35 +00:00
|
|
|
#include "libc/macros.internal.h"
|
2022-05-27 20:25:46 +00:00
|
|
|
#include "libc/nt/accounting.h"
|
2022-10-12 04:06:27 +00:00
|
|
|
#include "libc/runtime/runtime.h"
|
|
|
|
#include "libc/thread/thread.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
|
2022-05-27 20:25:46 +00:00
|
|
|
#define FT(x) (x.dwLowDateTime | (uint64_t)x.dwHighDateTime << 32)
|
|
|
|
|
|
|
|
static int cpus;
|
|
|
|
static double load;
|
2022-09-05 20:06:34 +00:00
|
|
|
static pthread_spinlock_t lock;
|
2022-05-27 20:25:46 +00:00
|
|
|
static struct NtFileTime idle1, kern1, user1;
|
|
|
|
|
|
|
|
textwindows int sys_getloadavg_nt(double *a, int n) {
|
|
|
|
int i, rc;
|
|
|
|
uint64_t elapsed, used;
|
|
|
|
struct NtFileTime idle, kern, user;
|
2022-09-05 20:06:34 +00:00
|
|
|
pthread_spin_lock(&lock);
|
2022-05-27 20:25:46 +00:00
|
|
|
if (GetSystemTimes(&idle, &kern, &user)) {
|
|
|
|
elapsed = (FT(kern) - FT(kern1)) + (FT(user) - FT(user1));
|
|
|
|
if (elapsed) {
|
|
|
|
used = elapsed - (FT(idle) - FT(idle1));
|
|
|
|
load = (double)used / elapsed * cpus;
|
|
|
|
load = MIN(MAX(load, 0), cpus * 2);
|
|
|
|
idle1 = idle, kern1 = kern, user1 = user;
|
|
|
|
}
|
|
|
|
for (i = 0; i < n; ++i) {
|
|
|
|
a[i] = load;
|
|
|
|
}
|
|
|
|
rc = n;
|
|
|
|
} else {
|
|
|
|
rc = __winerr();
|
|
|
|
}
|
2022-09-05 20:06:34 +00:00
|
|
|
pthread_spin_unlock(&lock);
|
2022-05-27 20:25:46 +00:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static textstartup void sys_getloadavg_nt_init(void) {
|
|
|
|
double a[3];
|
|
|
|
if (IsWindows()) {
|
|
|
|
load = 1;
|
2022-10-12 04:06:27 +00:00
|
|
|
cpus = _getcpucount() / 2;
|
2022-05-27 20:25:46 +00:00
|
|
|
cpus = MAX(1, cpus);
|
|
|
|
GetSystemTimes(&idle1, &kern1, &user1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const void *const sys_getloadavg_nt_ctor[] initarray = {
|
|
|
|
sys_getloadavg_nt_init,
|
|
|
|
};
|