Add (and install) svg for the new krunner interface.
[kdebase/uwolfer.git] / workspace / ksysguard / gui / SignalIDs.h
blob81f2d99730e07281bbacc14bb1cc6333fe0ed0c9
1 /*
2 KSysGuard, the KDE System Guard
4 Copyright (c) 2000 Chris Schlaeger <cs@kde.org>
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public
8 License version 2 or at your option version 3 as published by
9 the Free Software Foundation.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 #ifndef KSG_SIGNALIDS_H
23 #define KSG_SIGNALIDS_H
25 /* This file is used to correlate the entries of the process popup menu
26 * of the ProcessList class and the value received by the kill command
27 * in ksysguardd. We limit the set of available signals to the POSIX.1
28 * set with job control. */
30 #define MENU_ID_SIGABRT 11
31 #define MENU_ID_SIGALRM 12
32 #define MENU_ID_SIGCHLD 13
33 #define MENU_ID_SIGCONT 14
34 #define MENU_ID_SIGFPE 15
35 #define MENU_ID_SIGHUP 16
36 #define MENU_ID_SIGILL 17
37 #define MENU_ID_SIGINT 18
38 #define MENU_ID_SIGKILL 19
39 #define MENU_ID_SIGPIPE 20
40 #define MENU_ID_SIGQUIT 21
41 #define MENU_ID_SIGSEGV 22
42 #define MENU_ID_SIGSTOP 23
43 #define MENU_ID_SIGTERM 24
44 #define MENU_ID_SIGTSTP 25
45 #define MENU_ID_SIGTTIN 26
46 #define MENU_ID_SIGTTOU 27
47 #define MENU_ID_SIGUSR1 28
48 #define MENU_ID_SIGUSR2 29
50 #endif