Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / workspace / ksysguard / ksysguardd / Irix / ProcessList.h
blob5d949279ea20f15767562e8f1066f033d2772ba8
1 /*
2 KSysGuard, the KDE System Guard
4 Copyright (c) 1999 Chris Schlaeger <cs@kde.org>
6 Irix support by Carsten Kroll <ckroll@pinnaclesys.com>
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24 #ifndef _ProcessList_H_
25 #define _ProcessList_H_
27 #define PROCDIR "/proc"
29 void initProcessList(struct SensorModul* sm);
30 void exitProcessList(void);
32 int updateProcessList(void);
34 void printProcessList(const char*);
35 void printProcessListInfo(const char*);
37 void printProcessCount(const char* cmd);
38 void printProcessCountInfo(const char* cmd);
40 void killProcess(const char* cmd);
41 void setPriority(const char* cmd);
43 #endif