Copy stub sysdeps files to other OS impls to reduce compile errors.
This commit is contained in:
@@ -5,9 +5,9 @@ noinst_LTLIBRARIES = libgtop_sysdeps-2.0.la libgtop_sysdeps_suid-2.0.la
|
|||||||
|
|
||||||
libgtop_sysdeps_2_0_la_SOURCES = siglist.c nosuid.c mem.c swap.c uptime.c \
|
libgtop_sysdeps_2_0_la_SOURCES = siglist.c nosuid.c mem.c swap.c uptime.c \
|
||||||
procargs.c prockernel.c proclist.c procmap.c \
|
procargs.c prockernel.c proclist.c procmap.c \
|
||||||
procmem.c procsegment.c procsignal.c \
|
procmem.c procsegment.c procsignal.c disk.c \
|
||||||
proctime.c procuid.c procmem.c utils.c \
|
proctime.c procuid.c procmem.c utils.c \
|
||||||
procstate.c sysinfo.c netlist.c
|
procstate.c sysinfo.c netlist.c procio.c
|
||||||
|
|
||||||
|
|
||||||
libgtop_sysdeps_2_0_la_LDFLAGS = $(LT_VERSION_INFO)
|
libgtop_sysdeps_2_0_la_LDFLAGS = $(LT_VERSION_INFO)
|
||||||
|
42
sysdeps/aix/disk.c
Normal file
42
sysdeps/aix/disk.c
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
/* Copyright (C) 1998-99 Martin Baulig
|
||||||
|
This file is part of LibGTop 1.0.
|
||||||
|
|
||||||
|
Contributed by James Dominic P. Guana <guana.histark@gmail.com>, May 2020.
|
||||||
|
|
||||||
|
LibGTop is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License,
|
||||||
|
or (at your option) any later version.
|
||||||
|
|
||||||
|
LibGTop 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 General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with LibGTop; see the file COPYING. If not, write to the
|
||||||
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
|
Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
#include <glibtop.h>
|
||||||
|
#include <glibtop/disk.h>
|
||||||
|
|
||||||
|
static const unsigned long _glibtop_sysdeps_disk = 0;
|
||||||
|
|
||||||
|
/* Init function. */
|
||||||
|
|
||||||
|
void
|
||||||
|
_glibtop_init_disk_s (glibtop *server)
|
||||||
|
{
|
||||||
|
server->sysdeps.disk = _glibtop_sysdeps_disk;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Provides information about disk usage. */
|
||||||
|
|
||||||
|
void
|
||||||
|
glibtop_get_disk_s (glibtop *server, glibtop_disk *buf)
|
||||||
|
{
|
||||||
|
memset (buf, 0, sizeof (glibtop_disk));
|
||||||
|
}
|
@@ -25,6 +25,7 @@
|
|||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
#define GLIBTOP_SUID_CPU (1 << GLIBTOP_SYSDEPS_CPU)
|
#define GLIBTOP_SUID_CPU (1 << GLIBTOP_SYSDEPS_CPU)
|
||||||
|
#define GLIBTOP_SUID_DISK 0
|
||||||
#define GLIBTOP_SUID_MEM 0
|
#define GLIBTOP_SUID_MEM 0
|
||||||
#define GLIBTOP_SUID_SWAP 0
|
#define GLIBTOP_SUID_SWAP 0
|
||||||
#define GLIBTOP_SUID_UPTIME 0
|
#define GLIBTOP_SUID_UPTIME 0
|
||||||
@@ -45,6 +46,8 @@ G_BEGIN_DECLS
|
|||||||
#define GLIBTOP_SUID_NETLOAD (1 << GLIBTOP_SYSDEPS_NETLOAD)
|
#define GLIBTOP_SUID_NETLOAD (1 << GLIBTOP_SYSDEPS_NETLOAD)
|
||||||
#define GLIBTOP_SUID_NETLIST 0
|
#define GLIBTOP_SUID_NETLIST 0
|
||||||
#define GLIBTOP_SUID_PPP 0
|
#define GLIBTOP_SUID_PPP 0
|
||||||
|
#define GLIBTOP_SUID_PROC_OPEN_FILES 0
|
||||||
|
#define GLIBTOP_SUID_PROC_IO 0
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
|
43
sysdeps/aix/procio.c
Normal file
43
sysdeps/aix/procio.c
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
/* Copyright (C) 2017 Robert Roth
|
||||||
|
This file is part of LibGTop.
|
||||||
|
|
||||||
|
Contributed by Robert Roth <robert.roth.off@gmail.com>, February 2017.
|
||||||
|
|
||||||
|
LibGTop is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License,
|
||||||
|
or (at your option) any later version.
|
||||||
|
|
||||||
|
LibGTop 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 General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with LibGTop; see the file COPYING. If not, write to the
|
||||||
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
|
Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
#include <glibtop.h>
|
||||||
|
#include <glibtop/procio.h>
|
||||||
|
|
||||||
|
static const unsigned long _glibtop_sysdeps_proc_io = 0;
|
||||||
|
|
||||||
|
/* Init function. */
|
||||||
|
|
||||||
|
void
|
||||||
|
_glibtop_init_proc_io_s (glibtop *server)
|
||||||
|
{
|
||||||
|
server->sysdeps.proc_io = _glibtop_sysdeps_proc_io;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Provides detailed information about a process. */
|
||||||
|
|
||||||
|
void
|
||||||
|
glibtop_get_proc_io_s (glibtop *server, glibtop_proc_io *buf,
|
||||||
|
pid_t pid)
|
||||||
|
{
|
||||||
|
memset (buf, 0, sizeof (glibtop_proc_io));
|
||||||
|
}
|
@@ -10,7 +10,7 @@ libgtop_sysdeps_2_0_la_LDFLAGS = $(LT_VERSION_INFO)
|
|||||||
libgtop_sysdeps_suid_2_0_la_LIBADD = $(KVM_LIBS)
|
libgtop_sysdeps_suid_2_0_la_LIBADD = $(KVM_LIBS)
|
||||||
libgtop_sysdeps_suid_2_0_la_SOURCES = open.c close.c cpu.c mem.c swap.c \
|
libgtop_sysdeps_suid_2_0_la_SOURCES = open.c close.c cpu.c mem.c swap.c \
|
||||||
uptime.c loadavg.c shm_limits.c msg_limits.c \
|
uptime.c loadavg.c shm_limits.c msg_limits.c \
|
||||||
sem_limits.c procaffinity.c \
|
sem_limits.c disk.c procaffinity.c procio.c \
|
||||||
proclist.c procstate.c procuid.c \
|
proclist.c procstate.c procuid.c \
|
||||||
proctime.c procmem.c procsignal.c prockernel.c \
|
proctime.c procmem.c procsignal.c prockernel.c \
|
||||||
procsegment.c procargs.c procmap.c netlist.c \
|
procsegment.c procargs.c procmap.c netlist.c \
|
||||||
|
42
sysdeps/bsd/disk.c
Normal file
42
sysdeps/bsd/disk.c
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
/* Copyright (C) 1998-99 Martin Baulig
|
||||||
|
This file is part of LibGTop 1.0.
|
||||||
|
|
||||||
|
Contributed by James Dominic P. Guana <guana.histark@gmail.com>, May 2020.
|
||||||
|
|
||||||
|
LibGTop is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License,
|
||||||
|
or (at your option) any later version.
|
||||||
|
|
||||||
|
LibGTop 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 General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with LibGTop; see the file COPYING. If not, write to the
|
||||||
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
|
Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
#include <glibtop.h>
|
||||||
|
#include <glibtop/disk.h>
|
||||||
|
|
||||||
|
static const unsigned long _glibtop_sysdeps_disk = 0;
|
||||||
|
|
||||||
|
/* Init function. */
|
||||||
|
|
||||||
|
void
|
||||||
|
_glibtop_init_disk_s (glibtop *server)
|
||||||
|
{
|
||||||
|
server->sysdeps.disk = _glibtop_sysdeps_disk;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Provides information about disk usage. */
|
||||||
|
|
||||||
|
void
|
||||||
|
glibtop_get_disk_s (glibtop *server, glibtop_disk *buf)
|
||||||
|
{
|
||||||
|
memset (buf, 0, sizeof (glibtop_disk));
|
||||||
|
}
|
@@ -25,6 +25,7 @@
|
|||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
#define GLIBTOP_SUID_CPU (1 << GLIBTOP_SYSDEPS_CPU)
|
#define GLIBTOP_SUID_CPU (1 << GLIBTOP_SYSDEPS_CPU)
|
||||||
|
#define GLIBTOP_SUID_DISK 0
|
||||||
#define GLIBTOP_SUID_MEM (1 << GLIBTOP_SYSDEPS_MEM)
|
#define GLIBTOP_SUID_MEM (1 << GLIBTOP_SYSDEPS_MEM)
|
||||||
#define GLIBTOP_SUID_SWAP (1 << GLIBTOP_SYSDEPS_SWAP)
|
#define GLIBTOP_SUID_SWAP (1 << GLIBTOP_SYSDEPS_SWAP)
|
||||||
#define GLIBTOP_SUID_UPTIME (1 << GLIBTOP_SYSDEPS_UPTIME)
|
#define GLIBTOP_SUID_UPTIME (1 << GLIBTOP_SYSDEPS_UPTIME)
|
||||||
@@ -47,6 +48,8 @@ G_BEGIN_DECLS
|
|||||||
#define GLIBTOP_SUID_PPP (1 << GLIBTOP_SYSDEPS_PPP)
|
#define GLIBTOP_SUID_PPP (1 << GLIBTOP_SYSDEPS_PPP)
|
||||||
#define GLIBTOP_SUID_PROC_WD 0
|
#define GLIBTOP_SUID_PROC_WD 0
|
||||||
#define GLIBTOP_SUID_PROC_AFFINITY 0
|
#define GLIBTOP_SUID_PROC_AFFINITY 0
|
||||||
|
#define GLIBTOP_SUID_PROC_OPEN_FILES 0
|
||||||
|
#define GLIBTOP_SUID_PROC_IO 0
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
|
43
sysdeps/bsd/procio.c
Normal file
43
sysdeps/bsd/procio.c
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
/* Copyright (C) 2017 Robert Roth
|
||||||
|
This file is part of LibGTop.
|
||||||
|
|
||||||
|
Contributed by Robert Roth <robert.roth.off@gmail.com>, February 2017.
|
||||||
|
|
||||||
|
LibGTop is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License,
|
||||||
|
or (at your option) any later version.
|
||||||
|
|
||||||
|
LibGTop 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 General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with LibGTop; see the file COPYING. If not, write to the
|
||||||
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
|
Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
#include <glibtop.h>
|
||||||
|
#include <glibtop/procio.h>
|
||||||
|
|
||||||
|
static const unsigned long _glibtop_sysdeps_proc_io = 0;
|
||||||
|
|
||||||
|
/* Init function. */
|
||||||
|
|
||||||
|
void
|
||||||
|
_glibtop_init_proc_io_s (glibtop *server)
|
||||||
|
{
|
||||||
|
server->sysdeps.proc_io = _glibtop_sysdeps_proc_io;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Provides detailed information about a process. */
|
||||||
|
|
||||||
|
void
|
||||||
|
glibtop_get_proc_io_s (glibtop *server, glibtop_proc_io *buf,
|
||||||
|
pid_t pid)
|
||||||
|
{
|
||||||
|
memset (buf, 0, sizeof (glibtop_proc_io));
|
||||||
|
}
|
@@ -2,7 +2,7 @@ AM_CPPFLAGS = @AM_CPPFLAGS@
|
|||||||
|
|
||||||
noinst_LTLIBRARIES = libgtop_sysdeps-2.0.la
|
noinst_LTLIBRARIES = libgtop_sysdeps-2.0.la
|
||||||
|
|
||||||
libgtop_sysdeps_2_0_la_SOURCES = open.c close.c cpu.c mem.c swap.c \
|
libgtop_sysdeps_2_0_la_SOURCES = open.c close.c cpu.c disk.c mem.c swap.c \
|
||||||
uptime.c loadavg.c mountlist.c shm_limits.c msg_limits.c \
|
uptime.c loadavg.c mountlist.c shm_limits.c msg_limits.c \
|
||||||
sem_limits.c proclist.c procstate.c procuid.c \
|
sem_limits.c proclist.c procstate.c procuid.c \
|
||||||
proctime.c procmem.c procsignal.c prockernel.c \
|
proctime.c procmem.c procsignal.c prockernel.c \
|
||||||
|
42
sysdeps/cygwin/disk.c
Normal file
42
sysdeps/cygwin/disk.c
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
/* Copyright (C) 1998-99 Martin Baulig
|
||||||
|
This file is part of LibGTop 1.0.
|
||||||
|
|
||||||
|
Contributed by James Dominic P. Guana <guana.histark@gmail.com>, May 2020.
|
||||||
|
|
||||||
|
LibGTop is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License,
|
||||||
|
or (at your option) any later version.
|
||||||
|
|
||||||
|
LibGTop 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 General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with LibGTop; see the file COPYING. If not, write to the
|
||||||
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
|
Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
#include <glibtop.h>
|
||||||
|
#include <glibtop/disk.h>
|
||||||
|
|
||||||
|
static const unsigned long _glibtop_sysdeps_disk = 0;
|
||||||
|
|
||||||
|
/* Init function. */
|
||||||
|
|
||||||
|
void
|
||||||
|
_glibtop_init_disk_s (glibtop *server)
|
||||||
|
{
|
||||||
|
server->sysdeps.disk = _glibtop_sysdeps_disk;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Provides information about disk usage. */
|
||||||
|
|
||||||
|
void
|
||||||
|
glibtop_get_disk_s (glibtop *server, glibtop_disk *buf)
|
||||||
|
{
|
||||||
|
memset (buf, 0, sizeof (glibtop_disk));
|
||||||
|
}
|
@@ -23,6 +23,7 @@
|
|||||||
#define __CYGWIN__GLIBTOP_SERVER_H__
|
#define __CYGWIN__GLIBTOP_SERVER_H__
|
||||||
|
|
||||||
#define GLIBTOP_SUID_CPU 0
|
#define GLIBTOP_SUID_CPU 0
|
||||||
|
#define GLIBTOP_SUID_DISK 0
|
||||||
#define GLIBTOP_SUID_MEM 0
|
#define GLIBTOP_SUID_MEM 0
|
||||||
#define GLIBTOP_SUID_SWAP 0
|
#define GLIBTOP_SUID_SWAP 0
|
||||||
#define GLIBTOP_SUID_UPTIME 0
|
#define GLIBTOP_SUID_UPTIME 0
|
||||||
|
@@ -4,7 +4,7 @@ noinst_LTLIBRARIES = libgtop_sysdeps-2.0.la libgtop_sysdeps_suid-2.0.la
|
|||||||
|
|
||||||
libgtop_sysdeps_2_0_la_SOURCES = nosuid.c siglist.c sysinfo.c
|
libgtop_sysdeps_2_0_la_SOURCES = nosuid.c siglist.c sysinfo.c
|
||||||
|
|
||||||
libgtop_sysdeps_suid_2_0_la_SOURCES = open.c close.c \
|
libgtop_sysdeps_suid_2_0_la_SOURCES = open.c close.c disk.c \
|
||||||
cpu.c mem.c swap.c uptime.c loadavg.c shm_limits.c msg_limits.c \
|
cpu.c mem.c swap.c uptime.c loadavg.c shm_limits.c msg_limits.c \
|
||||||
sem_limits.c procaffinity.c proclist.c procstate.c procuid.c proctime.c \
|
sem_limits.c procaffinity.c proclist.c procstate.c procuid.c proctime.c \
|
||||||
procmem.c procsignal.c prockernel.c procsegment.c procargs.c \
|
procmem.c procsignal.c prockernel.c procsegment.c procargs.c \
|
||||||
|
42
sysdeps/darwin/disk.c
Normal file
42
sysdeps/darwin/disk.c
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
/* Copyright (C) 1998-99 Martin Baulig
|
||||||
|
This file is part of LibGTop 1.0.
|
||||||
|
|
||||||
|
Contributed by James Dominic P. Guana <guana.histark@gmail.com>, May 2020.
|
||||||
|
|
||||||
|
LibGTop is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License,
|
||||||
|
or (at your option) any later version.
|
||||||
|
|
||||||
|
LibGTop 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 General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with LibGTop; see the file COPYING. If not, write to the
|
||||||
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
|
Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
#include <glibtop.h>
|
||||||
|
#include <glibtop/disk.h>
|
||||||
|
|
||||||
|
static const unsigned long _glibtop_sysdeps_disk = 0;
|
||||||
|
|
||||||
|
/* Init function. */
|
||||||
|
|
||||||
|
void
|
||||||
|
_glibtop_init_disk_s (glibtop *server)
|
||||||
|
{
|
||||||
|
server->sysdeps.disk = _glibtop_sysdeps_disk;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Provides information about disk usage. */
|
||||||
|
|
||||||
|
void
|
||||||
|
glibtop_get_disk_s (glibtop *server, glibtop_disk *buf)
|
||||||
|
{
|
||||||
|
memset (buf, 0, sizeof (glibtop_disk));
|
||||||
|
}
|
@@ -23,6 +23,7 @@
|
|||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
#define GLIBTOP_SUID_CPU (1 << GLIBTOP_SYSDEPS_CPU)
|
#define GLIBTOP_SUID_CPU (1 << GLIBTOP_SYSDEPS_CPU)
|
||||||
|
#define GLIBTOP_SUID_DISK 0
|
||||||
#define GLIBTOP_SUID_MEM (1 << GLIBTOP_SYSDEPS_MEM)
|
#define GLIBTOP_SUID_MEM (1 << GLIBTOP_SYSDEPS_MEM)
|
||||||
#define GLIBTOP_SUID_SWAP (1 << GLIBTOP_SYSDEPS_SWAP)
|
#define GLIBTOP_SUID_SWAP (1 << GLIBTOP_SYSDEPS_SWAP)
|
||||||
#define GLIBTOP_SUID_UPTIME (1 << GLIBTOP_SYSDEPS_UPTIME)
|
#define GLIBTOP_SUID_UPTIME (1 << GLIBTOP_SYSDEPS_UPTIME)
|
||||||
|
@@ -5,7 +5,7 @@ noinst_LTLIBRARIES = libgtop_sysdeps-2.0.la libgtop_sysdeps_suid-2.0.la
|
|||||||
|
|
||||||
libgtop_sysdeps_2_0_la_SOURCES = nosuid.c siglist.c sysinfo.c shm_limits.c \
|
libgtop_sysdeps_2_0_la_SOURCES = nosuid.c siglist.c sysinfo.c shm_limits.c \
|
||||||
cpu.c msg_limits.c sem_limits.c loadavg.c \
|
cpu.c msg_limits.c sem_limits.c loadavg.c \
|
||||||
uptime.c netlist.c fsusage.c mem.c \
|
uptime.c netlist.c fsusage.c mem.c disk.c \
|
||||||
mountlist.c procopenfiles.c procwd.c \
|
mountlist.c procopenfiles.c procwd.c \
|
||||||
procaffinity.c glibtop_private.c open.c
|
procaffinity.c glibtop_private.c open.c
|
||||||
|
|
||||||
|
42
sysdeps/freebsd/disk.c
Normal file
42
sysdeps/freebsd/disk.c
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
/* Copyright (C) 1998-99 Martin Baulig
|
||||||
|
This file is part of LibGTop 1.0.
|
||||||
|
|
||||||
|
Contributed by James Dominic P. Guana <guana.histark@gmail.com>, May 2020.
|
||||||
|
|
||||||
|
LibGTop is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License,
|
||||||
|
or (at your option) any later version.
|
||||||
|
|
||||||
|
LibGTop 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 General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with LibGTop; see the file COPYING. If not, write to the
|
||||||
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
|
Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
#include <glibtop.h>
|
||||||
|
#include <glibtop/disk.h>
|
||||||
|
|
||||||
|
static const unsigned long _glibtop_sysdeps_disk = 0;
|
||||||
|
|
||||||
|
/* Init function. */
|
||||||
|
|
||||||
|
void
|
||||||
|
_glibtop_init_disk_s (glibtop *server)
|
||||||
|
{
|
||||||
|
server->sysdeps.disk = _glibtop_sysdeps_disk;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Provides information about disk usage. */
|
||||||
|
|
||||||
|
void
|
||||||
|
glibtop_get_disk_s (glibtop *server, glibtop_disk *buf)
|
||||||
|
{
|
||||||
|
memset (buf, 0, sizeof (glibtop_disk));
|
||||||
|
}
|
@@ -38,6 +38,7 @@ G_BEGIN_DECLS
|
|||||||
#define GLIBTOP_SUID_NETLOAD (1 << GLIBTOP_SYSDEPS_NETLOAD)
|
#define GLIBTOP_SUID_NETLOAD (1 << GLIBTOP_SYSDEPS_NETLOAD)
|
||||||
#define GLIBTOP_SUID_PPP (1 << GLIBTOP_SYSDEPS_PPP)
|
#define GLIBTOP_SUID_PPP (1 << GLIBTOP_SYSDEPS_PPP)
|
||||||
#define GLIBTOP_SUID_CPU 0
|
#define GLIBTOP_SUID_CPU 0
|
||||||
|
#define GLIBTOP_SUID_DISK 0
|
||||||
#define GLIBTOP_SUID_MEM 0
|
#define GLIBTOP_SUID_MEM 0
|
||||||
#define GLIBTOP_SUID_UPTIME 0
|
#define GLIBTOP_SUID_UPTIME 0
|
||||||
#define GLIBTOP_SUID_LOADAVG 0
|
#define GLIBTOP_SUID_LOADAVG 0
|
||||||
|
@@ -3,7 +3,7 @@ AM_CPPFLAGS = @AM_CPPFLAGS@
|
|||||||
noinst_LTLIBRARIES = libgtop_sysdeps-2.0.la libgtop_sysdeps_suid-2.0.la
|
noinst_LTLIBRARIES = libgtop_sysdeps-2.0.la libgtop_sysdeps_suid-2.0.la
|
||||||
|
|
||||||
libgtop_sysdeps_2_0_la_SOURCES = nosuid.c siglist.c sysinfo.c \
|
libgtop_sysdeps_2_0_la_SOURCES = nosuid.c siglist.c sysinfo.c \
|
||||||
cpu.c loadavg.c \
|
cpu.c loadavg.c disk.c \
|
||||||
uptime.c netlist.c fsusage.c mem.c \
|
uptime.c netlist.c fsusage.c mem.c \
|
||||||
mountlist.c procopenfiles.c procwd.c \
|
mountlist.c procopenfiles.c procwd.c \
|
||||||
procaffinity.c glibtop_private.c open.c
|
procaffinity.c glibtop_private.c open.c
|
||||||
|
42
sysdeps/openbsd/disk.c
Normal file
42
sysdeps/openbsd/disk.c
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
/* Copyright (C) 1998-99 Martin Baulig
|
||||||
|
This file is part of LibGTop 1.0.
|
||||||
|
|
||||||
|
Contributed by James Dominic P. Guana <guana.histark@gmail.com>, May 2020.
|
||||||
|
|
||||||
|
LibGTop is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License,
|
||||||
|
or (at your option) any later version.
|
||||||
|
|
||||||
|
LibGTop 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 General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with LibGTop; see the file COPYING. If not, write to the
|
||||||
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
|
Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
#include <glibtop.h>
|
||||||
|
#include <glibtop/disk.h>
|
||||||
|
|
||||||
|
static const unsigned long _glibtop_sysdeps_disk = 0;
|
||||||
|
|
||||||
|
/* Init function. */
|
||||||
|
|
||||||
|
void
|
||||||
|
_glibtop_init_disk_s (glibtop *server)
|
||||||
|
{
|
||||||
|
server->sysdeps.disk = _glibtop_sysdeps_disk;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Provides information about disk usage. */
|
||||||
|
|
||||||
|
void
|
||||||
|
glibtop_get_disk_s (glibtop *server, glibtop_disk *buf)
|
||||||
|
{
|
||||||
|
memset (buf, 0, sizeof (glibtop_disk));
|
||||||
|
}
|
@@ -41,6 +41,7 @@ G_BEGIN_DECLS
|
|||||||
#define GLIBTOP_SUID_NETLOAD (1 << GLIBTOP_SYSDEPS_NETLOAD)
|
#define GLIBTOP_SUID_NETLOAD (1 << GLIBTOP_SYSDEPS_NETLOAD)
|
||||||
#define GLIBTOP_SUID_PPP (1 << GLIBTOP_SYSDEPS_PPP)
|
#define GLIBTOP_SUID_PPP (1 << GLIBTOP_SYSDEPS_PPP)
|
||||||
#define GLIBTOP_SUID_CPU 0
|
#define GLIBTOP_SUID_CPU 0
|
||||||
|
#define GLIBTOP_SUID_DISK 0
|
||||||
#define GLIBTOP_SUID_MEM 0
|
#define GLIBTOP_SUID_MEM 0
|
||||||
#define GLIBTOP_SUID_UPTIME 0
|
#define GLIBTOP_SUID_UPTIME 0
|
||||||
#define GLIBTOP_SUID_LOADAVG 0
|
#define GLIBTOP_SUID_LOADAVG 0
|
||||||
|
@@ -5,7 +5,7 @@ noinst_LTLIBRARIES = libgtop_sysdeps-2.0.la libgtop_sysdeps_suid-2.0.la
|
|||||||
|
|
||||||
libgtop_sysdeps_2_0_la_SOURCES = open.c close.c siglist.c cpu.c mem.c swap.c \
|
libgtop_sysdeps_2_0_la_SOURCES = open.c close.c siglist.c cpu.c mem.c swap.c \
|
||||||
uptime.c loadavg.c shm_limits.c msg_limits.c \
|
uptime.c loadavg.c shm_limits.c msg_limits.c \
|
||||||
sem_limits.c ppp.c
|
sem_limits.c ppp.c procio.c disk.c
|
||||||
libgtop_sysdeps_2_0_la_LDFLAGS = $(LT_VERSION_INFO)
|
libgtop_sysdeps_2_0_la_LDFLAGS = $(LT_VERSION_INFO)
|
||||||
libgtop_sysdeps_2_0_la_LIBADD = -lmach
|
libgtop_sysdeps_2_0_la_LIBADD = -lmach
|
||||||
|
|
||||||
|
42
sysdeps/osf1/disk.c
Normal file
42
sysdeps/osf1/disk.c
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
/* Copyright (C) 1998-99 Martin Baulig
|
||||||
|
This file is part of LibGTop 1.0.
|
||||||
|
|
||||||
|
Contributed by James Dominic P. Guana <guana.histark@gmail.com>, May 2020.
|
||||||
|
|
||||||
|
LibGTop is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License,
|
||||||
|
or (at your option) any later version.
|
||||||
|
|
||||||
|
LibGTop 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 General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with LibGTop; see the file COPYING. If not, write to the
|
||||||
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
|
Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
#include <glibtop.h>
|
||||||
|
#include <glibtop/disk.h>
|
||||||
|
|
||||||
|
static const unsigned long _glibtop_sysdeps_disk = 0;
|
||||||
|
|
||||||
|
/* Init function. */
|
||||||
|
|
||||||
|
void
|
||||||
|
_glibtop_init_disk_s (glibtop *server)
|
||||||
|
{
|
||||||
|
server->sysdeps.disk = _glibtop_sysdeps_disk;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Provides information about disk usage. */
|
||||||
|
|
||||||
|
void
|
||||||
|
glibtop_get_disk_s (glibtop *server, glibtop_disk *buf)
|
||||||
|
{
|
||||||
|
memset (buf, 0, sizeof (glibtop_disk));
|
||||||
|
}
|
@@ -25,6 +25,7 @@
|
|||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
#define GLIBTOP_SUID_CPU 0
|
#define GLIBTOP_SUID_CPU 0
|
||||||
|
#define GLIBTOP_SUID_DISK 0
|
||||||
#define GLIBTOP_SUID_MEM 0
|
#define GLIBTOP_SUID_MEM 0
|
||||||
#define GLIBTOP_SUID_SWAP 0
|
#define GLIBTOP_SUID_SWAP 0
|
||||||
#define GLIBTOP_SUID_UPTIME 0
|
#define GLIBTOP_SUID_UPTIME 0
|
||||||
@@ -45,6 +46,8 @@ G_BEGIN_DECLS
|
|||||||
#define GLIBTOP_SUID_NETLOAD (1 << GLIBTOP_SYSDEPS_NETLOAD)
|
#define GLIBTOP_SUID_NETLOAD (1 << GLIBTOP_SYSDEPS_NETLOAD)
|
||||||
#define GLIBTOP_SUID_NETLIST 0
|
#define GLIBTOP_SUID_NETLIST 0
|
||||||
#define GLIBTOP_SUID_PPP 0
|
#define GLIBTOP_SUID_PPP 0
|
||||||
|
#define GLIBTOP_SUID_PROC_OPEN_FILES 0
|
||||||
|
#define GLIBTOP_SUID_PROC_IO 0
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
|
43
sysdeps/osf1/procio.c
Normal file
43
sysdeps/osf1/procio.c
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
/* Copyright (C) 2017 Robert Roth
|
||||||
|
This file is part of LibGTop.
|
||||||
|
|
||||||
|
Contributed by Robert Roth <robert.roth.off@gmail.com>, February 2017.
|
||||||
|
|
||||||
|
LibGTop is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License,
|
||||||
|
or (at your option) any later version.
|
||||||
|
|
||||||
|
LibGTop 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 General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with LibGTop; see the file COPYING. If not, write to the
|
||||||
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
|
Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
#include <glibtop.h>
|
||||||
|
#include <glibtop/procio.h>
|
||||||
|
|
||||||
|
static const unsigned long _glibtop_sysdeps_proc_io = 0;
|
||||||
|
|
||||||
|
/* Init function. */
|
||||||
|
|
||||||
|
void
|
||||||
|
_glibtop_init_proc_io_s (glibtop *server)
|
||||||
|
{
|
||||||
|
server->sysdeps.proc_io = _glibtop_sysdeps_proc_io;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Provides detailed information about a process. */
|
||||||
|
|
||||||
|
void
|
||||||
|
glibtop_get_proc_io_s (glibtop *server, glibtop_proc_io *buf,
|
||||||
|
pid_t pid)
|
||||||
|
{
|
||||||
|
memset (buf, 0, sizeof (glibtop_proc_io));
|
||||||
|
}
|
@@ -8,7 +8,7 @@ libgtop_sysdeps_2_0_la_SOURCES = open.c close.c siglist.c cpu.c mem.c \
|
|||||||
proclist.c procstate.c procuid.c \
|
proclist.c procstate.c procuid.c \
|
||||||
proctime.c procmem.c procsignal.c \
|
proctime.c procmem.c procsignal.c \
|
||||||
prockernel.c procsegment.c procargs.c \
|
prockernel.c procsegment.c procargs.c \
|
||||||
procopenfiles.c \
|
procopenfiles.c procio.c disk.c \
|
||||||
procmap.c netload.c ppp.c procdata.c netlist.c
|
procmap.c netload.c ppp.c procdata.c netlist.c
|
||||||
|
|
||||||
libgtop_sysdeps_2_0_la_LDFLAGS = $(LT_VERSION_INFO)
|
libgtop_sysdeps_2_0_la_LDFLAGS = $(LT_VERSION_INFO)
|
||||||
|
42
sysdeps/solaris/disk.c
Normal file
42
sysdeps/solaris/disk.c
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
/* Copyright (C) 1998-99 Martin Baulig
|
||||||
|
This file is part of LibGTop 1.0.
|
||||||
|
|
||||||
|
Contributed by James Dominic P. Guana <guana.histark@gmail.com>, May 2020.
|
||||||
|
|
||||||
|
LibGTop is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License,
|
||||||
|
or (at your option) any later version.
|
||||||
|
|
||||||
|
LibGTop 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 General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with LibGTop; see the file COPYING. If not, write to the
|
||||||
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
|
Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
#include <glibtop.h>
|
||||||
|
#include <glibtop/disk.h>
|
||||||
|
|
||||||
|
static const unsigned long _glibtop_sysdeps_disk = 0;
|
||||||
|
|
||||||
|
/* Init function. */
|
||||||
|
|
||||||
|
void
|
||||||
|
_glibtop_init_disk_s (glibtop *server)
|
||||||
|
{
|
||||||
|
server->sysdeps.disk = _glibtop_sysdeps_disk;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Provides information about disk usage. */
|
||||||
|
|
||||||
|
void
|
||||||
|
glibtop_get_disk_s (glibtop *server, glibtop_disk *buf)
|
||||||
|
{
|
||||||
|
memset (buf, 0, sizeof (glibtop_disk));
|
||||||
|
}
|
@@ -25,6 +25,7 @@
|
|||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
#define GLIBTOP_SUID_CPU 0
|
#define GLIBTOP_SUID_CPU 0
|
||||||
|
#define GLIBTOP_SUID_DISK 0
|
||||||
#define GLIBTOP_SUID_MEM 0
|
#define GLIBTOP_SUID_MEM 0
|
||||||
#define GLIBTOP_SUID_SWAP 0
|
#define GLIBTOP_SUID_SWAP 0
|
||||||
#define GLIBTOP_SUID_UPTIME 0
|
#define GLIBTOP_SUID_UPTIME 0
|
||||||
@@ -45,6 +46,8 @@ G_BEGIN_DECLS
|
|||||||
#define GLIBTOP_SUID_NETLOAD 0
|
#define GLIBTOP_SUID_NETLOAD 0
|
||||||
#define GLIBTOP_SUID_NETLIST 0
|
#define GLIBTOP_SUID_NETLIST 0
|
||||||
#define GLIBTOP_SUID_PPP 0
|
#define GLIBTOP_SUID_PPP 0
|
||||||
|
#define GLIBTOP_SUID_PROC_OPEN_FILES 0
|
||||||
|
#define GLIBTOP_SUID_PROC_IO 0
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
|
43
sysdeps/solaris/procio.c
Normal file
43
sysdeps/solaris/procio.c
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
/* Copyright (C) 2017 Robert Roth
|
||||||
|
This file is part of LibGTop.
|
||||||
|
|
||||||
|
Contributed by Robert Roth <robert.roth.off@gmail.com>, February 2017.
|
||||||
|
|
||||||
|
LibGTop is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License,
|
||||||
|
or (at your option) any later version.
|
||||||
|
|
||||||
|
LibGTop 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 General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with LibGTop; see the file COPYING. If not, write to the
|
||||||
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
|
Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
#include <glibtop.h>
|
||||||
|
#include <glibtop/procio.h>
|
||||||
|
|
||||||
|
static const unsigned long _glibtop_sysdeps_proc_io = 0;
|
||||||
|
|
||||||
|
/* Init function. */
|
||||||
|
|
||||||
|
void
|
||||||
|
_glibtop_init_proc_io_s (glibtop *server)
|
||||||
|
{
|
||||||
|
server->sysdeps.proc_io = _glibtop_sysdeps_proc_io;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Provides detailed information about a process. */
|
||||||
|
|
||||||
|
void
|
||||||
|
glibtop_get_proc_io_s (glibtop *server, glibtop_proc_io *buf,
|
||||||
|
pid_t pid)
|
||||||
|
{
|
||||||
|
memset (buf, 0, sizeof (glibtop_proc_io));
|
||||||
|
}
|
@@ -48,6 +48,7 @@ G_BEGIN_DECLS
|
|||||||
#define GLIBTOP_SUID_PPP 0
|
#define GLIBTOP_SUID_PPP 0
|
||||||
#define GLIBTOP_SUID_PROC_WD 0
|
#define GLIBTOP_SUID_PROC_WD 0
|
||||||
#define GLIBTOP_SUID_PROC_AFFINITY 0
|
#define GLIBTOP_SUID_PROC_AFFINITY 0
|
||||||
|
#define GLIBTOP_SUID_PROC_IO 0
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
|
@@ -3,7 +3,7 @@ AM_CPPFLAGS = @AM_CPPFLAGS@
|
|||||||
|
|
||||||
noinst_LTLIBRARIES = libgtop_sysdeps-2.0.la libgtop_sysdeps_suid-2.0.la
|
noinst_LTLIBRARIES = libgtop_sysdeps-2.0.la libgtop_sysdeps_suid-2.0.la
|
||||||
|
|
||||||
libgtop_sysdeps_2_0_la_SOURCES = nosuid.c siglist.c
|
libgtop_sysdeps_2_0_la_SOURCES = nosuid.c siglist.c disk.c procio.c
|
||||||
libgtop_sysdeps_2_0_la_LDFLAGS = $(LT_VERSION_INFO)
|
libgtop_sysdeps_2_0_la_LDFLAGS = $(LT_VERSION_INFO)
|
||||||
libgtop_sysdeps_2_0_la_LIBADD = -lkvm
|
libgtop_sysdeps_2_0_la_LIBADD = -lkvm
|
||||||
|
|
||||||
|
42
sysdeps/sun4/disk.c
Normal file
42
sysdeps/sun4/disk.c
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
/* Copyright (C) 1998-99 Martin Baulig
|
||||||
|
This file is part of LibGTop 1.0.
|
||||||
|
|
||||||
|
Contributed by James Dominic P. Guana <guana.histark@gmail.com>, May 2020.
|
||||||
|
|
||||||
|
LibGTop is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License,
|
||||||
|
or (at your option) any later version.
|
||||||
|
|
||||||
|
LibGTop 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 General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with LibGTop; see the file COPYING. If not, write to the
|
||||||
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
|
Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
#include <glibtop.h>
|
||||||
|
#include <glibtop/disk.h>
|
||||||
|
|
||||||
|
static const unsigned long _glibtop_sysdeps_disk = 0;
|
||||||
|
|
||||||
|
/* Init function. */
|
||||||
|
|
||||||
|
void
|
||||||
|
_glibtop_init_disk_s (glibtop *server)
|
||||||
|
{
|
||||||
|
server->sysdeps.disk = _glibtop_sysdeps_disk;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Provides information about disk usage. */
|
||||||
|
|
||||||
|
void
|
||||||
|
glibtop_get_disk_s (glibtop *server, glibtop_disk *buf)
|
||||||
|
{
|
||||||
|
memset (buf, 0, sizeof (glibtop_disk));
|
||||||
|
}
|
@@ -25,6 +25,7 @@
|
|||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
#define GLIBTOP_SUID_CPU (1 << GLIBTOP_SYSDEPS_CPU)
|
#define GLIBTOP_SUID_CPU (1 << GLIBTOP_SYSDEPS_CPU)
|
||||||
|
#define GLIBTOP_SUID_DISK 0
|
||||||
#define GLIBTOP_SUID_MEM (1 << GLIBTOP_SYSDEPS_MEM)
|
#define GLIBTOP_SUID_MEM (1 << GLIBTOP_SYSDEPS_MEM)
|
||||||
#define GLIBTOP_SUID_SWAP (1 << GLIBTOP_SYSDEPS_SWAP)
|
#define GLIBTOP_SUID_SWAP (1 << GLIBTOP_SYSDEPS_SWAP)
|
||||||
#define GLIBTOP_SUID_UPTIME (1 << GLIBTOP_SYSDEPS_UPTIME)
|
#define GLIBTOP_SUID_UPTIME (1 << GLIBTOP_SYSDEPS_UPTIME)
|
||||||
@@ -45,6 +46,8 @@ G_BEGIN_DECLS
|
|||||||
#define GLIBTOP_SUID_NETLOAD 0
|
#define GLIBTOP_SUID_NETLOAD 0
|
||||||
#define GLIBTOP_SUID_NETLIST 0
|
#define GLIBTOP_SUID_NETLIST 0
|
||||||
#define GLIBTOP_SUID_PPP 0
|
#define GLIBTOP_SUID_PPP 0
|
||||||
|
#define GLIBTOP_SUID_PROC_OPEN_FILES 0
|
||||||
|
#define GLIBTOP_SUID_PROC_IO 0
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
|
43
sysdeps/sun4/procio.c
Normal file
43
sysdeps/sun4/procio.c
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
/* Copyright (C) 2017 Robert Roth
|
||||||
|
This file is part of LibGTop.
|
||||||
|
|
||||||
|
Contributed by Robert Roth <robert.roth.off@gmail.com>, February 2017.
|
||||||
|
|
||||||
|
LibGTop is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License,
|
||||||
|
or (at your option) any later version.
|
||||||
|
|
||||||
|
LibGTop 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 General Public License
|
||||||
|
for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with LibGTop; see the file COPYING. If not, write to the
|
||||||
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
|
Boston, MA 02110-1301, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
#include <glibtop.h>
|
||||||
|
#include <glibtop/procio.h>
|
||||||
|
|
||||||
|
static const unsigned long _glibtop_sysdeps_proc_io = 0;
|
||||||
|
|
||||||
|
/* Init function. */
|
||||||
|
|
||||||
|
void
|
||||||
|
_glibtop_init_proc_io_s (glibtop *server)
|
||||||
|
{
|
||||||
|
server->sysdeps.proc_io = _glibtop_sysdeps_proc_io;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Provides detailed information about a process. */
|
||||||
|
|
||||||
|
void
|
||||||
|
glibtop_get_proc_io_s (glibtop *server, glibtop_proc_io *buf,
|
||||||
|
pid_t pid)
|
||||||
|
{
|
||||||
|
memset (buf, 0, sizeof (glibtop_proc_io));
|
||||||
|
}
|
Reference in New Issue
Block a user