summaryrefslogtreecommitdiff
path: root/x11/xfce4-taskmanager/files/patch-src-xfce-taskmanager-freebsd.h
blob: 1c6584c1687786a0b3aea9b1e9aad04363e5e55b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
--- src/xfce-taskmanager-freebsd.h.orig     Thu Jan  1 01:00:00 1970
+++ src/xfce-taskmanager-freebsd.h  Thu Feb  1 11:54:05 2007
@@ -0,0 +1,24 @@
+#ifndef FREEBSD_H
+#define FREEBSD_H
+
+#include <glib.h>
+#include <pwd.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <stdlib.h>
+#include <string.h>
+#include <limits.h>
+#include <fcntl.h>
+#include <paths.h>
+#include <nlist.h>
+#include <kvm.h>
+#include <sys/param.h>
+#include <sys/sysctl.h>
+#include <sys/user.h>
+
+#include "types.h"
+
+struct task get_task_details(struct kinfo_proc *);
+GArray *get_task_list();
+
+#endif