summaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2014-02-11 14:07:40 -0500
committerRobert Roth <robert.roth.off@gmail.com>2015-01-03 15:12:10 +0200
commitbea8b6790adc48a58cf21d81751d6867115747a3 (patch)
tree9b13733cb5c88fca1aa7827c5a3d6541ae485bb2 /sysdeps
parent5e6c25d29db381fab6b0b50add94e4a6ca8b7cca (diff)
downloadlibgtop-bea8b6790adc48a58cf21d81751d6867115747a3.tar.gz
stub sysdep: add some missing files
https://bugzilla.gnome.org/show_bug.cgi?id=724196
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/stub/Makefile.am3
-rw-r--r--sysdeps/stub/procaffinity.c35
-rw-r--r--sysdeps/stub/procwd.c32
-rw-r--r--sysdeps/stub/sysinfo.c31
4 files changed, 100 insertions, 1 deletions
diff --git a/sysdeps/stub/Makefile.am b/sysdeps/stub/Makefile.am
index 24fa7412..b5a81f54 100644
--- a/sysdeps/stub/Makefile.am
+++ b/sysdeps/stub/Makefile.am
@@ -8,7 +8,8 @@ libgtop_sysdeps_2_0_la_SOURCES = open.c close.c siglist.c cpu.c mem.c swap.c \
sem_limits.c proclist.c procstate.c procuid.c \
proctime.c procmem.c procsignal.c prockernel.c \
procsegment.c procargs.c procmap.c netload.c \
- ppp.c netlist.c procopenfiles.c
+ ppp.c netlist.c procopenfiles.c procaffinity.c \
+ procwd.c sysinfo.c
libgtop_sysdeps_2_0_la_LDFLAGS = $(LT_VERSION_INFO)
diff --git a/sysdeps/stub/procaffinity.c b/sysdeps/stub/procaffinity.c
new file mode 100644
index 00000000..2bcdd6cd
--- /dev/null
+++ b/sysdeps/stub/procaffinity.c
@@ -0,0 +1,35 @@
+/* Copyright (C) 2014 Ryan Lortie <desrt@desrt.ca>
+ This file is part of LibGTop 2.
+
+ 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., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+*/
+
+#include <config.h>
+#include <glibtop/procaffinity.h>
+
+void
+_glibtop_init_proc_affinity_s(glibtop *server)
+{
+}
+
+guint16 *
+glibtop_get_proc_affinity_s(glibtop *server, glibtop_proc_affinity *buf, pid_t pid)
+{
+ memset(buf, 0, sizeof *buf);
+
+ return NULL;
+}
+
diff --git a/sysdeps/stub/procwd.c b/sysdeps/stub/procwd.c
new file mode 100644
index 00000000..664a0fbb
--- /dev/null
+++ b/sysdeps/stub/procwd.c
@@ -0,0 +1,32 @@
+/* Copyright (C) 2014 Ryan Lortie <desrt@desrt.ca>
+ This file is part of LibGTop 2.
+
+ 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., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+*/
+
+#include <config.h>
+#include <glibtop/procwd.h>
+
+void
+_glibtop_init_proc_wd_s(glibtop *server)
+{
+}
+
+char**
+glibtop_get_proc_wd_s(glibtop *server, glibtop_proc_wd *buf, pid_t pid)
+{
+ return NULL;
+}
diff --git a/sysdeps/stub/sysinfo.c b/sysdeps/stub/sysinfo.c
new file mode 100644
index 00000000..909e6a07
--- /dev/null
+++ b/sysdeps/stub/sysinfo.c
@@ -0,0 +1,31 @@
+/* Copyright (C) 2014 Ryan Lortie <desrt@desrt.ca>
+ This file is part of LibGTop 1.0.
+
+ Contributed by Martin Baulig <martin@home-of-linux.org>, April 1998.
+
+ 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., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+*/
+
+#include <config.h>
+#include <glibtop/sysinfo.h>
+
+static glibtop_sysinfo sysinfo = { .flags = 0 };
+
+const glibtop_sysinfo *
+glibtop_get_sysinfo_s (glibtop *server)
+{
+ return &sysinfo;
+}