1 | /* $Id: glibtop_server.h,v 1.1.1.1 2003-01-02 04:56:12 ghudson Exp $ */ |
---|
2 | |
---|
3 | /* Copyright (C) 1998-99 Martin Baulig |
---|
4 | This file is part of LibGTop 1.0. |
---|
5 | |
---|
6 | Contributed by Martin Baulig <martin@home-of-linux.org>, April 1998. |
---|
7 | |
---|
8 | LibGTop is free software; you can redistribute it and/or modify it |
---|
9 | under the terms of the GNU General Public License as published by |
---|
10 | the Free Software Foundation; either version 2 of the License, |
---|
11 | or (at your option) any later version. |
---|
12 | |
---|
13 | LibGTop is distributed in the hope that it will be useful, but WITHOUT |
---|
14 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
---|
15 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
---|
16 | for more details. |
---|
17 | |
---|
18 | You should have received a copy of the GNU General Public License |
---|
19 | along with LibGTop; see the file COPYING. If not, write to the |
---|
20 | Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
---|
21 | Boston, MA 02111-1307, USA. |
---|
22 | */ |
---|
23 | |
---|
24 | #ifndef __GLIBTOP_SERVER_H__ |
---|
25 | #define __GLIBTOP_SERVER_H__ |
---|
26 | |
---|
27 | BEGIN_LIBGTOP_DECLS |
---|
28 | |
---|
29 | #define GLIBTOP_SUID_CPU 0 |
---|
30 | #define GLIBTOP_SUID_MEM 0 |
---|
31 | #define GLIBTOP_SUID_SWAP 0 |
---|
32 | #define GLIBTOP_SUID_UPTIME 0 |
---|
33 | #define GLIBTOP_SUID_LOADAVG 0 |
---|
34 | #define GLIBTOP_SUID_SHM_LIMITS 0 |
---|
35 | #define GLIBTOP_SUID_MSG_LIMITS 0 |
---|
36 | #define GLIBTOP_SUID_SEM_LIMITS 0 |
---|
37 | #define GLIBTOP_SUID_PROCLIST (1 << GLIBTOP_SYSDEPS_PROCLIST) |
---|
38 | #define GLIBTOP_SUID_PROC_STATE (1 << GLIBTOP_SYSDEPS_PROC_STATE) |
---|
39 | #define GLIBTOP_SUID_PROC_UID (1 << GLIBTOP_SYSDEPS_PROC_UID) |
---|
40 | #define GLIBTOP_SUID_PROC_MEM (1 << GLIBTOP_SYSDEPS_PROC_MEM) |
---|
41 | #define GLIBTOP_SUID_PROC_TIME (1 << GLIBTOP_SYSDEPS_PROC_TIME) |
---|
42 | #define GLIBTOP_SUID_PROC_SIGNAL (1 << GLIBTOP_SYSDEPS_PROC_SIGNAL) |
---|
43 | #define GLIBTOP_SUID_PROC_KERNEL (1 << GLIBTOP_SYSDEPS_PROC_KERNEL) |
---|
44 | #define GLIBTOP_SUID_PROC_SEGMENT (1 << GLIBTOP_SYSDEPS_PROC_SEGMENT) |
---|
45 | #define GLIBTOP_SUID_PROC_MAP (1 << GLIBTOP_SYSDEPS_PROC_MAP) |
---|
46 | #define GLIBTOP_SUID_PROC_ARGS (1 << GLIBTOP_SYSDEPS_PROC_ARGS) |
---|
47 | #define GLIBTOP_SUID_NETLOAD (1 << GLIBTOP_SYSDEPS_NETLOAD) |
---|
48 | #define GLIBTOP_SUID_PPP 0 |
---|
49 | |
---|
50 | END_LIBGTOP_DECLS |
---|
51 | |
---|
52 | #endif |
---|