~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to ksysguard/gui/SignalIDs.h

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    KSysGuard, the KDE System Guard
 
3
   
 
4
    Copyright (c) 2000 Chris Schlaeger <cs@kde.org>
 
5
    
 
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.
 
10
 
 
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.
 
15
 
 
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.
 
19
 
 
20
*/
 
21
 
 
22
#ifndef KSG_SIGNALIDS_H
 
23
#define KSG_SIGNALIDS_H
 
24
 
 
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. */
 
29
 
 
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
 
49
 
 
50
#endif