Signed-off-by: Alejandro Colomar <alx.manpages@xxxxxxxxx> --- man2/sigprocmask.2 | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/man2/sigprocmask.2 b/man2/sigprocmask.2 index b82386f14..6d961f84f 100644 --- a/man2/sigprocmask.2 +++ b/man2/sigprocmask.2 @@ -35,7 +35,7 @@ sigprocmask, rt_sigprocmask \- examine and change blocked signals .nf /* Prototype for the glibc wrapper function */ .BI "int sigprocmask(int " how ", const sigset_t *restrict " set , -.BI " sigset_t *restrict " oldset ); +.BI " sigset_t *restrict " oldset ); .PP .BR "#include <signal.h>" " /* Definition of " SIG_* " constants */" .BR "#include <sys/syscall.h>" " /* Definition of " SYS_* " constants */" @@ -43,11 +43,13 @@ sigprocmask, rt_sigprocmask \- examine and change blocked signals .PP /* Prototype for the underlying system call */ .BI "int syscall(SYS_rt_sigprocmask, int " how ", const kernel_sigset_t *" set , -.BI " kernel_sigset_t *" oldset ", size_t " sigsetsize ); +.BI " kernel_sigset_t *" oldset \ +", size_t " sigsetsize ); .PP -/* Prototype for the legacy system call (deprecated) */ -.BI "int syscall(SYS_sigprocmask, int " how ", const old_kernel_sigset_t *" set , -.BI " old_kernel_sigset_t *" oldset ); +/* Prototype for the legacy system call */ +.BI "[[deprecated]] int syscall(SYS_sigprocmask, int " how , +.BI " const old_kernel_sigset_t *" set , +.BI " old_kernel_sigset_t *" oldset ); .fi .PP .RS -4 -- 2.33.1