1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
'\" t
.\" (c) 1993 by Thomas Knig (ig25@rz.uni-karlsruhe.de)
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one
.\"
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date. The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein. The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
.\"
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\" License.
.\" Modified Sat Jul 24 17:34:08 1993 by Rik Faith (faith@cs.unc.edu)
.\" Translated into German by ???
.\" Modified Sun Jan 7 01:41:27 1996 by Andries Brouwer (aeb@cwi.nl)
.\"
.TH SIGNAL 7 "24. April 1993" "Linux" "Verschiedenes"
.SH BEZEICHNUNG
signal \- Liste der verfgbaren Signale
.SH BESCHREIBUNG
Linux untersttzt folgende Signale:
.sp
.PP
.TS
l | l | l | l
_ | _ | _ | _
lB | r | l | l .
Signalname Wert Aktion Bemerkung
SIGHUP 1 A Verbindung beendet (Aufgehngt)
SIGINT 2 A Interrupt-Signal von der Tastatur
SIGQUIT 3 A Quit-Signal von der Tastatur
SIGILL 4 A Falsche Instruktion
SIGTRAP 5 CG berwachung/Stop Punkt
SIGABRT 6 C Abbruch
SIGUNUSED 7 AG Nicht verwendet
SIGFPE 8 C Fliesskomma berschreitung
SIGKILL 9 AEF Beendigungssignal
SIGUSR1 10 A Benutzer\-definiertes Signal 1
SIGSEGV 11 C Ungltige Speicherreferenz
SIGUSR2 12 A Benutzer\-definiertes Signal 2
SIGPIPE 13 A Schreiben in eine Pipeline ohne Lesen
SIGALRM 14 A Zeitsignal von alarm(1).
SIGTERM 15 A Beendigungssignal
SIGSTKFLT 16 AG Stack-Fehler im Koprozessor
SIGCHLD 17 B Kind-Prozess beendet
SIGCONT 18 Weiterfahren, wenn gestoppt
SIGSTOP 19 DEF Prozessstop
SIGTSTP 20 D Stop getippt an einem TTY
SIGTTIN 21 D TTY Eingabe fr Hintergrundsprozesse
SIGTTOU 22 D TTY Ausgabe fr Hintergrundsprozesse
SIGIO 23 AG E/A Fehler
SIGXCPU 24 AG CPU Zeitlimite berschritten
SIGXFSZ 25 AG Dateien Grssenlimite berschritten
SIGVTALRM 26 AG Virtueller Zeitalarm (???)
SIGPROF 27 AG Profile Signal
SIGWINCH 29 BG Fenster Grssennderung
.TE
.PP
Die Zeichen in der Kolone "Aktion" haben folgende Bedeutung:
.IP A
Normalerweise wird der Prozess abgebrochen.
.IP B
Normalerweise wird dieses Signal ignoriert.
.IP C
Normalerweise wird ein "dump core" durchgefhrt.
.IP D
Normalerweise wird der Prozess gestoppt.
.IP E
Signal kann nicht abgefangen werden.
.IP F
Signal kann nicht ignoriert werden.
.IP G
Kein POSIX.1 konformes Signal.
.SH "KONFORM ZU"
POSIX.1
.SH FEHLER
.B SIGBUS
fehlt; weil dieses Signal die 386er Hardware nicht generiert, und das
Portieren von anderen Architekturen unntig schwer macht.
|