summaryrefslogtreecommitdiffstats
path: root/man3/gsignal.3
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--man3/gsignal.315
1 files changed, 7 insertions, 8 deletions
diff --git a/man3/gsignal.3 b/man3/gsignal.3
index 4587650..4c41dbd 100644
--- a/man3/gsignal.3
+++ b/man3/gsignal.3
@@ -5,7 +5,7 @@
.\"
.\" This replaces an earlier man page written by Walter Harms
.\" <walter.harms@informatik.uni-oldenburg.de>.
-.TH gsignal 3 2023-07-20 "Linux man-pages 6.05.01"
+.TH gsignal 3 2023-10-31 "Linux man-pages 6.7"
.SH NAME
gsignal, ssignal \- software signal facility
.SH LIBRARY
@@ -14,19 +14,19 @@ Standard C library
.SH SYNOPSIS
.nf
.B #include <signal.h>
-.PP
+.P
.B typedef void (*sighandler_t)(int);
-.PP
+.P
.BI "[[deprecated]] int gsignal(int " signum );
-.PP
+.P
.BI "[[deprecated]] sighandler_t ssignal(int " signum ", sighandler_t " action );
.fi
-.PP
+.P
.RS -4
Feature Test Macro Requirements for glibc (see
.BR feature_test_macros (7)):
.RE
-.PP
+.P
.BR gsignal (),
.BR ssignal ():
.nf
@@ -43,7 +43,7 @@ aliases for
and
.BR signal (2),
respectively.
-.PP
+.P
Elsewhere, on System V-like systems, these functions implement
software signaling, entirely independent of the classical
.BR signal (2)
@@ -100,7 +100,6 @@ T{
.BR ssignal ()
T} Thread safety MT-Safe sigintr
.TE
-.sp 1
.SH STANDARDS
None.
.SH HISTORY