1998-06-07 Martin Baulig <martin@home-of-linux.org> * *.[ch]: Using single underscore instead of two underscores for function prefixes (regexp: ``s,__([rspl])\b,_$1,g'') to avoid ambiguity with mangled C++ names.
103 lines
3.3 KiB
C
103 lines
3.3 KiB
C
/* Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
|
|
This file is part of the Gnome Top Library.
|
|
Contributed by Martin Baulig <martin@home-of-linux.org>, April 1998.
|
|
|
|
The Gnome Top Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public License as
|
|
published by the Free Software Foundation; either version 2 of the
|
|
License, or (at your option) any later version.
|
|
|
|
The Gnome Top Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with the GNU C Library; see the file COPYING.LIB. If not,
|
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
#include <glibtop.h>
|
|
#include <glibtop/union.h>
|
|
#include <glibtop/sysdeps.h>
|
|
|
|
#define BIT_MASK(feature) (feature ? (1 << feature) : feature)
|
|
|
|
const unsigned long glibtop_server_features =
|
|
BIT_MASK(GLIBTOP_SUID_CPU) +
|
|
BIT_MASK(GLIBTOP_SUID_MEM) +
|
|
BIT_MASK(GLIBTOP_SUID_SWAP) +
|
|
BIT_MASK(GLIBTOP_SUID_UPTIME) +
|
|
BIT_MASK(GLIBTOP_SUID_LOADAVG) +
|
|
BIT_MASK(GLIBTOP_SUID_SHM_LIMITS) +
|
|
BIT_MASK(GLIBTOP_SUID_MSG_LIMITS) +
|
|
BIT_MASK(GLIBTOP_SUID_SEM_LIMITS) +
|
|
BIT_MASK(GLIBTOP_SUID_PROCLIST) +
|
|
BIT_MASK(GLIBTOP_SUID_PROC_STATE) +
|
|
BIT_MASK(GLIBTOP_SUID_PROC_UID) +
|
|
BIT_MASK(GLIBTOP_SUID_PROC_MEM) +
|
|
BIT_MASK(GLIBTOP_SUID_PROC_TIME) +
|
|
BIT_MASK(GLIBTOP_SUID_PROC_SIGNAL) +
|
|
BIT_MASK(GLIBTOP_SUID_PROC_KERNEL) +
|
|
BIT_MASK(GLIBTOP_SUID_PROC_SEGMENT);
|
|
|
|
/* Checks which features are implemented. */
|
|
|
|
void
|
|
glibtop_get_sysdeps_r (glibtop *server, glibtop_sysdeps *buf)
|
|
{
|
|
glibtop_union data;
|
|
|
|
memset (buf, 0, sizeof (glibtop_sysdeps));
|
|
|
|
buf->features = glibtop_server_features;
|
|
|
|
/* Call all system dependent functions to check which values
|
|
* they return. */
|
|
|
|
glibtop_get_cpu_r (server, &data.cpu);
|
|
buf->cpu = data.cpu.flags;
|
|
|
|
glibtop_get_mem_r (server, &data.mem);
|
|
buf->mem = data.mem.flags;
|
|
|
|
glibtop_get_swap_r (server, &data.swap);
|
|
buf->swap = data.swap.flags;
|
|
|
|
glibtop_get_uptime_r (server, &data.uptime);
|
|
buf->uptime = data.uptime.flags;
|
|
|
|
glibtop_get_loadavg_r (server, &data.loadavg);
|
|
buf->loadavg = data.loadavg.flags;
|
|
|
|
glibtop_get_shm_limits_r (server, &data.shm_limits);
|
|
buf->shm_limits = data.shm_limits.flags;
|
|
|
|
glibtop_get_msg_limits_r (server, &data.msg_limits);
|
|
buf->msg_limits = data.msg_limits.flags;
|
|
|
|
glibtop_get_sem_limits_r (server, &data.sem_limits);
|
|
buf->sem_limits = data.sem_limits.flags;
|
|
|
|
glibtop_get_proclist_r (server, &data.proclist);
|
|
buf->proclist = data.proclist.flags;
|
|
|
|
glibtop_get_proc_state_r (server, &data.proc_state, 0);
|
|
buf->proc_state = data.proc_state.flags;
|
|
|
|
glibtop_get_proc_uid_r (server, &data.proc_uid, 0);
|
|
buf->proc_uid = data.proc_uid.flags;
|
|
|
|
glibtop_get_proc_mem_r (server, &data.proc_mem, 0);
|
|
buf->proc_mem = data.proc_mem.flags;
|
|
|
|
glibtop_get_proc_time_r (server, &data.proc_time, 0);
|
|
buf->proc_time = data.proc_time.flags;
|
|
|
|
glibtop_get_proc_kernel_r (server, &data.proc_kernel, 0);
|
|
buf->proc_kernel = data.proc_kernel.flags;
|
|
|
|
glibtop_get_proc_segment_r (server, &data.proc_segment, 0);
|
|
buf->proc_segment = data.proc_segment.flags;
|
|
}
|