summaryrefslogtreecommitdiff
path: root/sysdeps/stub/procaffinity.c
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/stub/procaffinity.c
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/stub/procaffinity.c')
-rw-r--r--sysdeps/stub/procaffinity.c35
1 files changed, 35 insertions, 0 deletions
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;
+}
+