mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 18:32:50 +00:00
51 lines
1.6 KiB
C
51 lines
1.6 KiB
C
![]() |
/*
|
||
|
KSysGuard, the KDE System Guard
|
||
|
|
||
|
Copyright (c) 2000 Chris Schlaeger <cs@kde.org>
|
||
|
|
||
|
This program is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU General Public
|
||
|
License version 2 or at your option version 3 as published by
|
||
|
the Free Software Foundation.
|
||
|
|
||
|
This program is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
GNU General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with this program; if not, write to the Free Software
|
||
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
|
||
|
*/
|
||
|
|
||
|
#ifndef KSG_SIGNALIDS_H
|
||
|
#define KSG_SIGNALIDS_H
|
||
|
|
||
|
/* This file is used to correlate the entries of the process popup menu
|
||
|
* of the ProcessList class and the value received by the kill command
|
||
|
* in ksysguardd. We limit the set of available signals to the POSIX.1
|
||
|
* set with job control. */
|
||
|
|
||
|
#define MENU_ID_SIGABRT 11
|
||
|
#define MENU_ID_SIGALRM 12
|
||
|
#define MENU_ID_SIGCHLD 13
|
||
|
#define MENU_ID_SIGCONT 14
|
||
|
#define MENU_ID_SIGFPE 15
|
||
|
#define MENU_ID_SIGHUP 16
|
||
|
#define MENU_ID_SIGILL 17
|
||
|
#define MENU_ID_SIGINT 18
|
||
|
#define MENU_ID_SIGKILL 19
|
||
|
#define MENU_ID_SIGPIPE 20
|
||
|
#define MENU_ID_SIGQUIT 21
|
||
|
#define MENU_ID_SIGSEGV 22
|
||
|
#define MENU_ID_SIGSTOP 23
|
||
|
#define MENU_ID_SIGTERM 24
|
||
|
#define MENU_ID_SIGTSTP 25
|
||
|
#define MENU_ID_SIGTTIN 26
|
||
|
#define MENU_ID_SIGTTOU 27
|
||
|
#define MENU_ID_SIGUSR1 28
|
||
|
#define MENU_ID_SIGUSR2 29
|
||
|
|
||
|
#endif
|