dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / lib / libast / common / man / sig.3
blobdb41a2b08cb3a0750695142350cdd003cd630fbf
1 .fp 5 CW
2 .de Af
3 .ds ;G \\*(;G\\f\\$1\\$3\\f\\$2
4 .if !\a\\$4\a\a .Af \\$2 \\$1 "\\$4" "\\$5" "\\$6" "\\$7" "\\$8" "\\$9"
5 ..
6 .de aF
7 .ie \a\\$3\a\a .ft \\$1
8 .el \{\
9 .ds ;G \&
10 .nr ;G \\n(.f
11 .Af "\\$1" "\\$2" "\\$3" "\\$4" "\\$5" "\\$6" "\\$7" "\\$8" "\\$9"
12 \\*(;G
13 .ft \\n(;G \}
15 .de L
16 .aF 5 \\n(.f "\\$1" "\\$2" "\\$3" "\\$4" "\\$5" "\\$6" "\\$7"
18 .de LR
19 .aF 5 1 "\\$1" "\\$2" "\\$3" "\\$4" "\\$5" "\\$6" "\\$7"
21 .de RL
22 .aF 1 5 "\\$1" "\\$2" "\\$3" "\\$4" "\\$5" "\\$6" "\\$7"
24 .de EX          \" start example
25 .ta 1i 2i 3i 4i 5i 6i
26 .PP
27 .RS 
28 .PD 0
29 .ft 5
30 .nf
32 .de EE          \" end example
33 .fi
34 .ft
35 .PD
36 .RE
37 .PP
39 .TH SIG 3
40 .SH NAME
41 sig \- signal interface routines
42 .SH SYNOPSIS
43 .L "#include <ast.h>"
44 .L "#include <sig.h>"
45 .sp
46 .L "int sigunblock(int sig);"
47 .L "int sigcritical(int op);"
48 .SH DESCRIPTION
49 .L sigunblock
50 is called to
51 unblocks the signal
52 .L sig
53 from within a handler currently servicing
54 .LR sig .
55 .PP
56 .L sigcritical
57 controls a critical region for the
58 .LR SIGINT ,
59 .L SIGQUIT
60 and
61 .L SIGHUP
62 signals.
63 .L "op > 0"
64 pushes the region,
65 .L "op == 0"
66 pops the region, and
67 .L "op < 0"
68 returns non-zero if any signals are being held in the current
69 critical region.
70 Signal critical regions may be nested.
71 The current critical region level is returned,
72 .L \-1
73 on error.
74 .SH "SEE ALSO"
75 signal(2)