File: explain.3

package info (click to toggle)
libexplain 1.4.D001-8
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 39,324 kB
  • sloc: ansic: 156,027; makefile: 47,893; sh: 16,303; yacc: 1,894; awk: 245
file content (1613 lines) | stat: -rw-r--r-- 45,151 bytes parent folder | download | duplicates (5)
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
.\"
.\" libexplain - Explain errno values returned by libc functions
.\" Copyright (C) 2008-2013 Peter Miller
.\" Written by Peter Miller <pmiller@opensource.org.au>
.\"
.\" This program is free software; you can redistribute it and/or modify
.\" it under the terms of the GNU General Public License as published by
.\" the Free Software Foundation; either version 3 of the License, or
.\" (at your option) any later version.
.\"
.\" 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, see <http://www.gnu.org/licenses/>.
.\"
.cp 0  \" Solaris defaults to ''.cp 1'', sheesh.
.TH libexplain 3
.SH NAME
libexplain \- Explain errno values returned by libc functions
.if require_index \{
.XX "libexplain(3)" "Explain errno values returned by libc functions"
.\}
.SH SYNOPSIS
cc ... \-lexplain;
.sp
#include <libexplain/libexplain.h>
.SH DESCRIPTION
The libexplain library exists to give explanations of error reported by
system calls.  The error message returned by \f[I]strerror\fP(3) tend to
be quite cryptic.  By providing a specific error report for each system
call, a more detailed error message is possible, usually identifying and
describing the specific cause from amongst the numerous meanings each
\f[I]errno\fP value maps to.
.SS Race Condition
The explanation of the cause of an error is dependent on the environment
of the error to remain unchanged, so that when libexplain gets around to
looking for the cause, the cause is still there.  On a running system,
and particularly a multi\[hy]user system, this is not always possible.
.PP
If an incorrect explanation is provided,
it is possible that the cause is no longer present.
.SS Compiling
Assuming the library header files has been installed into \f[CW]/usr/include\fP,
and the library files have been installed into \f[CW]/usr/lib\fP,
compiling against libexplain requires no special \f[CW]\-I\fP options.
.PP
When linking your pograms, add \f[CW]\-lexplain\fP to the list of
libraries at the end of your link line.
.RS
.ft CW
cc \&... \-lexplain
.ft R
.RE
.PP
When you configure your package with GNU Autoconf,
you need the large file support macro
.RS
AC_SYS_LARGEFILE
.RE
.PP
If you aren't using GNU Autoconf, you will have to work out the needed
large file support requirements yourdelf.
.PP
There is a \f[I]pkg\[hy]config\fP(1) package for you to use, too:
.RS
CFLAGS="$CFLAGS `pkg\-config libexplain \-\-cflags`"
LIBS="$LIBS `pkg\-config libexplain \-\-libs`"
.RE
This can make figuring out the command line requirements
much easier.
.SS Environment Variable
The \f[CW]EXPLAIN_OPTIONS\fP environment variable may be used
to control some of the content in the messages.
Options are separated by comma (\[lq],\[rq]) characters.
.PP
There are three ways to set an option:
.TP 3m
1.
The form \[lq]\f[I]name\fP=\f[I]value\fP\[rq] may be used explicitly.
The values \[lq]true\[rq] and \[lq]false\[rq] are used for boolean options.
.TP 3m
2.
An option name alone is interpreted to mean \[lq]\f[I]name\fP=true\[rq].
.TP 3m
3.
The form \[lq]no\[hy]\f[I]name\fP\[rq] is interpreted to
mean \[lq]\f[I]name\fP=false\[rq].
.PP
The following options are available:
.TP 8n
debug
Additional debugging messages for libexplain developers.
Not generally useful to clients of the library.
.br
Default: false.
.TP 8n
extra\[hy]device\[hy]info
Additional information for block and character special devices is printed
when naming a file and its type.
.br
Default: true
.TP 8n
numeric\[hy]errno
This option includes the numeric \f[I]errno\fP value
in the message,
\f[I]e.g.\fP \[lq](2, ENOENT)\[rq] rather than \[lq](ENOENT)\[rq].
Disabling this option is generally of use in automated testing, to
prevent UNIX dialect differences from producing false negatives.
.br
Default: true
.TP 8n
dialect\[hy]specific
This controls the presence of explanatory text specific to a particular
UNIX dialect.
It also suppresses printing system specific maximums.
Disabling this option is generally of use in automated testing, to
prevent UNIX dialect differences from producing false negatives.
.br
Default: true.
.TP 8n
hanging\[hy]indent
This controls the hanging indent depth used for error message wrapping.
By default no hanging indent is used, but this can sometimes obfuscate
the end of one error message and the beginning of another.  A hanging
indent results in continuation lines starting with white spoace, similar
to RFC822 headers.  A value of 0 means no hanging indent (all lines
flush with left margin).  A common value to use is 4: it doesn't consume
to much of each line, and it is a clear indent.
The program may choose to override the environment variable using the
\f[I]explain_option_hanging_indent_set\fP(3) function.
The hanging indent is limited to 10% of the terminal width.
.br
Default: 0
.TP 8n
internal\[hy]strerror
This option controls the source of
system eror message texts.
If false, it uses \f[I]streror\P(3) for the text.
If true, it uses internal string for the text.
This is mostly of use for automated testing, to avoid false negatives
induced by inconsistencies across Unix implementations.
.br
Default: false.
.TP 8n
program\[hy]name
This option controls the inclusion of the program name at the
start of error messages, by
the explain_*_or_die
and explain_*_on_error
functions.
This helps users understand which command is throwing the error.
Disabling this option may be of some interest to script writers.
Program developers can use the \f[I]explain_program_name_set\fP(3)
function to set the name of the command, if they wish to override
the name that libexplain would otherwise obtain from the operating system.
Program developers can use the \f[I]explain_program_name_assemble\fP(3)
function to trump this option.
.br
Default: true.
.TP 8n
symbolic\[hy]mode\[hy]bits
This option controls how permission mode bits are represented in error messages.
Setting this option to true will cause symbolic names to be printed
(\f[I]e.g.\fP S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH).
Setting this option to false will cause octal values to be printed
(\f[I]e.g.\fP 0644).
.br
Default: false.
.SH Supported System Calls
Each supported system call has its own \f[I]man\fP page.
.\" please keep the following list sorted
.\" ----------  A  ---------------------------------------------------------
.TP 8n
\f[I]explain_accept\fP(3)
Explain \f[I]accept\fP(2) errors
.TP 8n
\f[I]explain_accept_or_die\fP(3)
accept a connection on a socket and report errors
.TP 8n
\f[I]explain_accept4\fP(3)
Explain \f[I]accept4\fP(2) errors
.TP 8n
\f[I]explain_accept4_or_die\fP(3)
accept a connection on a socket and report errors
.TP 8n
\f[I]explain_access\fP(3)
Explain \f[I]access\fP(2) errors
.TP 8n
\f[I]explain_access_or_die\fP(3)
check permissions for a file and report errors
.TP 8n
\f[I]explain_acct\fP(3)
Explain \f[I]acct\fP(2) errors
.TP 8n
\f[I]explain_acct_or_die\fP(3)
process accounting control and report errors
.TP 8n
\f[I]explain_acl_from_text\fP(3)
Explain \f[I]acl_from_text\fP(3) errors
.TP 8n
\f[I]explain_acl_from_text_or_die\fP(3)
create an ACL from text and report errors
.TP 8n
\f[I]explain_acl_get_fd\fP(3)
Explain \f[I]acl_get_fd\fP(3) errors
.TP 8n
\f[I]explain_acl_get_fd_or_die\fP(3)
Execute \f[I]acl_get_fd\fP(3) and report errors
.TP 8n
\f[I]explain_acl_get_file\fP(3)
Explain \f[I]acl_get_file\fP(3) errors
.TP 8n
\f[I]explain_acl_get_file_or_die\fP(3)
Execute \f[I]acl_get_file\fP(3) and report errors
.TP 8n
\f[I]explain_acl_set_fd\fP(3)
Explain \f[I]acl_set_fd\fP(3) errors
.TP 8n
\f[I]explain_acl_set_fd_or_die\fP(3)
set an ACL by file descriptor and report errors
.TP 8n
\f[I]explain_acl_set_file\fP(3)
Explain \f[I]acl_set_file\fP(3) errors
.TP 8n
\f[I]explain_acl_set_file_or_die\fP(3)
set an ACL by filename and report errors
.TP 8n
\f[I]explain_acl_to_text\fP(3)
Explain \f[I]acl_to_text\fP(3) errors
.TP 8n
\f[I]explain_acl_to_text_or_die\fP(3)
convert an ACL to text and report errors
.TP 8n
\f[I]explain_adjtime\fP(3)
Explain \f[I]adjtime\fP(2) errors
.TP 8n
\f[I]explain_adjtime_or_die\fP(3)
smoothly tune kernel clock and report errors
.TP 8n
\f[I]explain_adjtimex\fP(3)
Explain \f[I]adjtimex\fP(2) errors
.TP 8n
\f[I]explain_adjtimex_or_die\fP(3)
tune kernel clock and report errors
.TP 8n
\f[I]explain_asprintf\fP(3)
Explain \f[I]asprintf\fP(3) errors
.TP 8n
\f[I]explain_asprintf_or_die\fP(3)
print to allocated string and report errors
.\" ----------  B  ---------------------------------------------------------
.TP 8n
\f[I]explain_bind\fP(3)
Explain \f[I]bind\fP(2) errors
.TP 8n
\f[I]explain_bind_or_die\fP(3)
bind a name to a socket and report errors
.\" ----------  C  ---------------------------------------------------------
.TP 8n
\f[I]explain_calloc\fP(3)
Explain \f[I]calloc\fP(3) errors
.TP 8n
\f[I]explain_calloc_or_die\fP(3)
Allocate and clear memory and report errors
.TP 8n
\f[I]explain_chdir\fP(3)
Explain \f[I]chdir\fP(2) errors
.TP 8n
\f[I]explain_chdir_or_die\fP(3)
change working directory and report errors
.TP 8n
\f[I]explain_chmod\fP(3)
Explain \f[I]chmod\fP(2) errors
.TP 8n
\f[I]explain_chmod_or_die\fP(3)
change permissions of a file and report errors
.TP 8n
\f[I]explain_chown\fP(3)
Explain \f[I]chown\fP errors
.TP 8n
\f[I]explain_chown_or_die\fP(3)
change ownership of a file and report errors
.TP 8n
\f[I]explain_chroot\fP(3)
Explain \f[I]chroot\fP(2) errors
.TP 8n
\f[I]explain_chroot_or_die\fP(3)
change root directory and report errors
.TP 8n
\f[I]explain_close\fP(3)
Explain \f[I]close\fP(2) errors
.TP 8n
\f[I]explain_close_or_die\fP(3)
close a file descriptor and report errors
.TP 8n
\f[I]explain_closedir\fP(3)
Explain \f[I]closedir\fP(3) errors
.TP 8n
\f[I]explain_closedir_or_die\fP(3)
close a directory and report errors
.TP 8n
\f[I]explain_connect\fP(3)
Explain \f[I]connect\fP(2) errors
.TP 8n
\f[I]explain_connect_or_die\fP(3)
initiate a connection on a socket and report errors
.TP 8n
\f[I]explain_creat\fP(3)
Explain \f[I]creat\fP(2) errors
.TP 8n
\f[I]explain_creat_or_die\fP(3)
create and open a file and report errors
.\" ----------  D  ---------------------------------------------------------
.TP 8n
\f[I]explain_dirfd\fP(3)
Explain \f[I]dirfd\fP(3) errors
.TP 8n
\f[I]explain_dirfd_or_die\fP(3)
get directory stream file descriptor and report errors
.TP 8n
\f[I]explain_dup\fP(3)
Explain \f[I]dup\fP(2) errors
.TP 8n
\f[I]explain_dup_or_die\fP(3)
duplicate a file descriptor and report errors
.TP 8n
\f[I]explain_dup2\fP(3)
Explain \f[I]dup2\fP(2) errors
.TP 8n
\f[I]explain_dup2_or_die\fP(3)
duplicate a file descriptor and report errors
.\" ----------  E  ---------------------------------------------------------
.TP 8n
\f[I]explain_endgrent\fP(3)
Explain \f[I]endgrent\fP(3) errors
.TP 8n
\f[I]explain_endgrent_or_die\fP(3)
finish group file accesses and report errors
.TP 8n
\f[I]explain_eventfd\fP(3)
Explain \f[I]eventfd\fP(2) errors
.TP 8n
\f[I]explain_eventfd_or_die\fP(3)
create a file descriptor for event notification and report errors
.TP 8n
\f[I]explain_execlp\fP(3)
Explain \f[I]execlp\fP(3) errors
.TP 8n
\f[I]explain_execlp_or_die\fP(3)
execute a file and report errors
.TP 8n
\f[I]explain_execv\fP(3)
Explain \f[I]execv\fP(3) errors
.TP 8n
\f[I]explain_execv_or_die\fP(3)
execute a file and report errors
.TP 8n
\f[I]explain_execve\fP(3)
Explain \f[I]execve\fP(2) errors
.TP 8n
\f[I]explain_execve_or_die\fP(3)
execute program and report errors
.TP 8n
\f[I]explain_execvp\fP(3)
Explain \f[I]execvp\fP(3) errors
.TP 8n
\f[I]explain_execvp_or_die\fP(3)
execute program and report errors
.\" ----------  F  ---------------------------------------------------------
.TP 8n
\f[I]explain_exit\fP(3)
print an explanation of exit status before exiting
.TP 8n
\f[I]explain_fchdir\fP(3)
Explain \f[I]fchdir\fP(2) errors
.TP 8n
\f[I]explain_fchmod\fP(3)
Explain \f[I]fchmod\fP(2) errors
.TP 8n
\f[I]explain_fchmod_or_die\fP(3)
change permissions of an open file and report errors
.TP 8n
\f[I]explain_fchown\fP(3)
Explain \f[I]fchown\fP(2) errors
.TP 8n
\f[I]explain_fchown_or_die\fP(3)
change ownership of a file and report errors
.TP 8n
\f[I]explain_fchownat\fP(3)
Explain \f[I]fchownat\fP(2) errors
.TP 8n
\f[I]explain_fchownat_or_die\fP(3)
change ownership of a file relative to a directory and report errors
.TP 8n
\f[I]explain_fclose\fP(3)
Explain \f[I]fclose\fP(2) errors
.TP 8n
\f[I]explain_fclose_or_die\fP(3)
close a stream and report errors
.TP 8n
\f[I]explain_fcntl\fP(3)
Explain \f[I]fcntl\fP(2) errors
.TP 8n
\f[I]explain_fcntl_or_die\fP(3)
Manipulate a file descriptor and report errors
.TP 8n
\f[I]explain_fdopen\fP(3)
Explain \f[I]fdopen\fP(3) errors
.TP 8n
\f[I]explain_fdopen_or_die\fP(3)
stream open function and report errors
.TP 8n
\f[I]explain_fdopendir\fP(3)
Explain \f[I]fdopendir\fP(3) errors
.TP 8n
\f[I]explain_fdopendir_or_die\fP(3)
open a directory and report errors
.TP 8n
\f[I]explain_feof\fP(3)
Explain \f[I]feof\fP(3) errors
.TP 8n
\f[I]explain_feof_or_die\fP(3)
check and reset stream status and report errors
.TP 8n
\f[I]explain_ferror\fP(3)
Explain \f[I]ferror\fP(3) errors
.TP 8n
\f[I]explain_ferror_or_die\fP(3)
check stream status and report errors
.TP 8n
\f[I]explain_fflush\fP(3)
Explain \f[I]fflush\fP(3) errors
.TP 8n
\f[I]explain_fflush_or_die\fP(3)
flush a stream and report errors
.TP 8n
\f[I]explain_fgetc\fP(3)
Explain \f[I]fgetc\fP(3) errors
.TP 8n
\f[I]explain_fgetc_or_die\fP(3)
input of characters and report errors
.TP 8n
\f[I]explain_fgetpos\fP(3)
Explain \f[I]fgetpos\fP(3) errors
.TP 8n
\f[I]explain_fgetpos_or_die\fP(3)
reposition a stream and report errors
.TP 8n
\f[I]explain_fgets\fP(3)
Explain \f[I]fgets\fP(3) errors
.TP 8n
\f[I]explain_fgets_or_die\fP(3)
input of strings and report errors
.TP 8n
\f[I]explain_fileno\fP(3)
Explain \f[I]fileno\fP(3) errors
.TP 8n
\f[I]explain_fileno_or_die\fP(3)
check and reset stream status and report errors
.TP 8n
\f[I]explain_flock\fP(3)
Explain \f[I]flock\fP(2) errors
.TP 8n
\f[I]explain_flock_or_die\fP(3)
apply or remove an advisory lock on an open file and report errors
.TP 8n
\f[I]explain_fopen\fP(3)
Explain \f[I]fopen\fP(3) errors
.TP 8n
\f[I]explain_fopen_or_die\fP(2)
open files and report errors
.TP 8n
\f[I]explain_fork\fP(3)
Explain \f[I]fork\fP(2) errors
.TP 8n
\f[I]explain_fork_or_die\fP(3)
create a child process and report errors
.TP 8n
\f[I]explain_fpathconf\fP(3)
Explain \f[I]fpathconf\fP(3) errors
.TP 8n
\f[I]explain_fpathconf_or_die\fP(3)
get configuration values for files and report errors
.TP 8n
\f[I]explain_fprintf\fP(3)
Explain \f[I]fprintf\fP(3) errors
.TP 8n
\f[I]explain_fprintf_or_die\fP(3)
formatted output conversion and report errors
.TP 8n
\f[I]explain_fpurge\fP(3)
Explain \f[I]fpurge\fP(3) errors
.TP 8n
\f[I]explain_fpurge_or_die\fP(3)
purge a stream and report errors
.TP 8n
\f[I]explain_fputc\fP(3)
Explain \f[I]fputc\fP(3) errors
.TP 8n
\f[I]explain_fputc_or_die\fP(3)
output of characters and report errors
.TP 8n
\f[I]explain_fputs\fP(3)
Explain \f[I]fputs\fP(3) errors
.TP 8n
\f[I]explain_fputs_or_die\fP(3)
write a string to a stream and report errors
.TP 8n
\f[I]explain_fread\fP(3)
Explain \f[I]fread\fP(3) errors
.TP 8n
\f[I]explain_fread_or_die\fP(3)
binary stream input and report errors
.TP 8n
\f[I]explain_freopen\fP(3)
Explain \f[I]freopen\fP(3) errors
.TP 8n
\f[I]explain_freopen_or_die\fP(3)
open files and report errors
.TP 8n
\f[I]explain_fseek\fP(3)
Explain \f[I]fseek\fP(3) errors
.TP 8n
\f[I]explain_fseek_or_die\fP(3)
reposition a stream and report errors
.TP 8n
\f[I]explain_fseeko\fP(3)
Explain \f[I]fseeko\fP(3) errors
.TP 8n
\f[I]explain_fseeko_or_die\fP(3)
seek to or report file position and report errors
.TP 8n
\f[I]explain_fsetpos\fP(3)
Explain \f[I]fsetpos\fP(3) errors
.TP 8n
\f[I]explain_fsetpos_or_die\fP(3)
reposition a stream and report errors
.TP 8n
\f[I]explain_fstat\fP(3)
Explain \f[I]fstat\fP(3) errors
.TP 8n
\f[I]explain_fstat_or_die\fP(3)
get file status and report errors
.TP 8n
\f[I]explain_fstatat\fP(3)
Explain \f[I]fstatat\fP(2) errors
.TP 8n
\f[I]explain_fstatat_or_die\fP(3)
get file status relative to a directory file descriptor and report errors
.TP 8n
\f[I]explain_fstatfs\fP(3)
Explain \f[I]fstatfs\fP(2) errors
.TP 8n
\f[I]explain_fstatfs_or_die\fP(3)
get file system statistics and report errors
.TP 8n
\f[I]explain_fstatvfs\fP(3)
Explain \f[I]fstatvfs\fP(2) errors
.TP 8n
\f[I]explain_fstatvfs_or_die\fP(3)
get file system statistics and report errors
.TP 8n
\f[I]explain_fsync\fP(3)
Explain \f[I]fsync\fP(2) errors
.TP 8n
\f[I]explain_fsync_or_die\fP(3)
synchronize a file's in\[hy]core state with storage device and report errors
.TP 8n
\f[I]explain_ftell\fP(3)
Explain \f[I]ftell\fP(3) errors
.TP 8n
\f[I]explain_ftell_or_die\fP(3)
get stream position and report errors
.TP 8n
\f[I]explain_ftello\fP(3)
Explain \f[I]ftello\fP(3) errors
.TP 8n
\f[I]explain_ftello_or_die\fP(3)
get stream position and report errors
.TP 8n
\f[I]explain_ftime\fP(3)
Explain \f[I]ftime\fP(3) errors
.TP 8n
\f[I]explain_ftime_or_die\fP(3)
return date and time and report errors
.TP 8n
\f[I]explain_ftruncate\fP(3)
Explain \f[I]ftruncate\fP(2) errors
.TP 8n
\f[I]explain_ftruncate_or_die\fP(3)
truncate a file to a specified length and report errors
.TP 8n
\f[I]explain_futimens\fP(3)
Explain \f[I]futimens\fP(3) errors
.TP 8n
\f[I]explain_futimens_or_die\fP(3)
change file timestamps with nanosecond precision and report errors
.TP 8n
\f[I]explain_futimes\fP(3)
Explain \f[I]futimes\fP(3) errors
.TP 8n
\f[I]explain_futimes_or_die\fP(3)
Execute \f[I]futimes\fP(3) and report errors
.TP 8n
\f[I]explain_futimesat\fP(3)
Explain \f[I]futimesat\fP(2) errors
.TP 8n
\f[I]explain_futimesat_or_die\fP(3)
change timestamps of a file relative to a directory  and report errors
.TP 8n
\f[I]explain_fwrite\fP(3)
Explain \f[I]fwrite\fP(3) errors
.TP 8n
\f[I]explain_fwrite_or_die\fP(3)
binary stream output and report errors
.TP 8n
\f[I]explain_futimesat\fP(3)
Explain \f[I]futimesat\fP(2) errors
.TP 8n
\f[I]explain_futimesat_or_die\fP(3)
change timestamps of a file relative to a directory  and report errors
.\" ----------  G  ---------------------------------------------------------
.TP 8n
\f[I]explain_getaddrinfo\fP(3)
Explain \f[I]getaddrinfo\fP(3) errors
.TP 8n
\f[I]explain_getaddrinfo_or_die\fP(3)
network address and and report errors
.TP 8n
\f[I]explain_getc\fP(3)
Explain \f[I]getc\fP(3) errors
.TP 8n
\f[I]explain_getc_or_die\fP(3)
input of characters and report errors
.TP 8n
\f[I]explain_getchar\fP(3)
Explain \f[I]getchar\fP(3) errors
.TP 8n
\f[I]explain_getchar_or_die\fP(3)
input of characters and report errors
.TP 8n
\f[I]explain_getcwd\fP(3)
Explain \f[I]getcwd\fP(2) errors
.TP 8n
\f[I]explain_getdomainname\fP(3)
Explain \f[I]getdomainname\fP(2) errors
.TP 8n
\f[I]explain_getdomainname_or_die\fP(3)
get domain name and report errors
.TP 8n
\f[I]explain_getgrent\fP(3)
Explain \f[I]getgrent\fP(3) errors
.TP 8n
\f[I]explain_getgrent_or_die\fP(3)
get group file entry and report errors
.TP 8n
\f[I]explain_getgrouplist\fP(3)
Explain \f[I]getgrouplist\fP(3) errors
.TP 8n
\f[I]explain_getgrouplist_or_die\fP(3)
get list of groups to which a user belongs and report errors
.TP 8n
\f[I]explain_getgroups\fP(3)
Explain \f[I]getgroups\fP(2) errors
.TP 8n
\f[I]explain_getgroups_or_die\fP(3)
get list of supplementary group IDs and report errors
.TP 8n
\f[I]explain_getcwd_or_die\fP(3)
Get current working directory and report errors
.TP 8n
\f[I]explain_gethostbyname\fP(3)
Explain \f[I]gethostbyname\fP(3) errors
.TP 8n
\f[I]explain_gethostbyname_or_die\fP(3)
get host address given host name and report errors
.TP 8n
\f[I]explain_gethostid\fP(3)
Explain \f[I]gethostid\fP(3) errors
.TP 8n
\f[I]explain_gethostid_or_die\fP(3)
get the unique identifier of the current host and report errors
.TP 8n
\f[I]explain_gethostname\fP(3)
Explain \f[I]gethostname\fP(2) errors
.TP 8n
\f[I]explain_gethostname_or_die\fP(3)
get hostname and report errors
.TP 8n
\f[I]explain_getpeername\fP(3)
Explain \f[I]getpeername\fP(2) errors
.TP 8n
\f[I]explain_getpeername_or_die\fP(3)
Execute\f[I]getpeername\fP(2) and report errors
.TP 8n
\f[I]explain_getpgid\fP(3)
Explain \f[I]getpgid\fP(2) errors
.TP 8n
\f[I]explain_getpgid_or_die\fP(3)
get process group and report errors
.TP 8n
\f[I]explain_getpgrp\fP(3)
Explain \f[I]getpgrp\fP(2) errors
.TP 8n
\f[I]explain_getpgrp_or_die\fP(3)
get process group and report errors
.TP 8n
\f[I]explain_getpriority\fP(3)
Explain \f[I]getpriority\fP(2) errors
.TP 8n
\f[I]explain_getpriority_or_die\fP(3)
get program scheduling priority and report errors
.TP 8n
\f[I]explain_getresgid\fP(3)
Explain \f[I]getresgid\fP(2) errors
.TP 8n
\f[I]explain_getresgid_or_die\fP(3)
get real, effective and saved group IDs and report errors
.TP 8n
\f[I]explain_getresuid\fP(3)
Explain \f[I]getresuid\fP(2) errors
.TP 8n
\f[I]explain_getresuid_or_die\fP(3)
get real, effective and saved user IDs and report errors
.TP 8n
\f[I]explain_getrlimit\fP(3)
Explain \f[I]getrlimit\fP(2) errors
.TP 8n
\f[I]explain_getrlimit_or_die\fP(3)
get resource limits and report errors
.TP 8n
\f[I]explain_getrusage\fP(3)
Explain \f[I]getrusage\fP(2) errors
.TP 8n
\f[I]explain_getrusage_or_die\fP(3)
get resource usage and report errors
.TP 8n
\f[I]explain_getsockname\fP(3)
Explain \f[I]getsockname\fP(2) errors
.TP 8n
\f[I]explain_getsockname_or_die\fP(3)
Execute \f[I]getsockname\fP(2) and report errors
.TP 8n
\f[I]explain_getsockopt\fP(3)
Explain \f[I]getsockopt\fP(2) errors
.TP 8n
\f[I]explain_getsockopt_or_die\fP(3)
Execute \f[I]getsockopt\fP(2) and report errors
.TP 8n
\f[I]explain_gettimeofday\fP(3)
Explain \f[I]gettimeofday\fP(2) errors
.TP 8n
\f[I]explain_gettimeofday_or_die\fP(3)
get time and report errors
.TP 8n
\f[I]explain_getw\fP(3)
Explain \f[I]getw\fP(3) errors
.TP 8n
\f[I]explain_getw_or_die\fP(3)
input a word (int) and report errors
.\" ----------  H  ---------------------------------------------------------
.\" ----------  I  ---------------------------------------------------------
.TP 8n
\f[I]explain_iconv\fP(3)
Explain \f[I]iconv\fP(3) errors
.TP 8n
\f[I]explain_iconv_or_die\fP(3)
perform character set conversion and report errors
.TP 8n
\f[I]explain_iconv_close\fP(3)
Explain \f[I]iconv_close\fP(3) errors
.TP 8n
\f[I]explain_iconv_close_or_die\fP(3)
deallocate descriptor for character set conversion and report errors
.TP 8n
\f[I]explain_iconv_open\fP(3)
Explain \f[I]iconv_open\fP(3) errors
.TP 8n
\f[I]explain_iconv_open_or_die\fP(3)
allocate descriptor for character set conversion and report errors
.TP 8n
\f[I]explain_ioctl\fP(3)
Explain \f[I]ioctl\fP(2) errors
.TP 8n
\f[I]explain_ioctl_or_die\fP(3)
Execute \f[I]ioctl\fP(2) and report errors
.\" ----------  J  ---------------------------------------------------------
.\" ----------  K  ---------------------------------------------------------
.TP 8n
\f[I]explain_kill\fP(3)
Explain \f[I]kill\fP(2) errors
.TP 8n
\f[I]explain_kill_or_die\fP(3)
send signal to a process and report errors
.\" ----------  L  ---------------------------------------------------------
.TP 8n
\f[I]explain_lchmod\fP(3)
Explain \f[I]lchmod\fP(2) errors
.TP 8n
\f[I]explain_lchmod_or_die\fP(3)
change permissions of a file and report errors
.TP 8n
\f[I]explain_lchown\fP(3)
Explain \f[I]lchown\fP(2) errors
.TP 8n
\f[I]explain_lchown_or_die\fP(3)
change ownership of a file and report errors
.TP 8n
\f[I]explain_lchownat\fP(3)
Explain \f[I]lchownat\fP(2) errors
.TP 8n
\f[I]explain_lchownat_or_die\fP(3)
Execute \f[I]lchownat\fP(2) and report errors
.TP 8n
\f[I]explain_link\fP(3)
Explain \f[I]link\fP(2) errors
.TP 8n
\f[I]explain_link_or_die\fP(3)
make a new name for a file and report errors
.TP 8n
\f[I]explain_linkat\fP(3)
Explain \f[I]linkat\fP(2) errors
.TP 8n
\f[I]explain_linkat_or_die\fP(3)
create a file link relative to directory file descriptors and report errors
.TP 8n
\f[I]explain_listen\fP(3)
Explain \f[I]listen\fP(2) errors
.TP 8n
\f[I]explain_listen_or_die\fP(3)
listen for connections on a socket and report errors
.TP 8n
\f[I]explain_lseek\fP(3)
Explain \f[I]lseek\fP(2) errors
.TP 8n
\f[I]explain_lseek_or_die\fP(3)
reposition file offset and report errors
.TP 8n
\f[I]explain_lstat\fP(3)
Explain \f[I]lstat\fP(2) errors
.TP 8n
\f[I]explain_lstat_or_die\fP(3)
get file status and report errors
.TP 8n
\f[I]explain_lutimes\fP(3)
Explain \f[I]lutimes\fP(3) errors
.TP 8n
\f[I]explain_lutimes_or_die\fP(3)
modify file timestamps and report errors
.\" ----------  M  ---------------------------------------------------------
.TP 8n
\f[I]explain_malloc\fP(3)
Explain \f[I]malloc\fP(3) errors
.TP 8n
\f[I]explain_malloc_or_die\fP(3)
Execute \f[I]malloc\fP(3) and report errors
.TP 8n
\f[I]explain_mkdir\fP(3)
Explain \f[I]mkdir\fP(2) errors
.TP 8n
\f[I]explain_mkdir_or_die\fP(3)
create directory and report errors
.TP 8n
\f[I]explain_mkdtemp\fP(3)
Explain \f[I]mkdtemp\fP(3) errors
.TP 8n
\f[I]explain_mkdtemp_or_die\fP(3)
create a unique temporary directory and report errors
.TP 8n
\f[I]explain_mknod\fP(3)
Explain \f[I]mknod\fP(2) errors
.TP 8n
\f[I]explain_mknod_or_die\fP(3)
create a special or ordinary file and report errors
.TP 8n
\f[I]explain_mkostemp\fP(3)
Explain \f[I]mkostemp\fP(3) errors
.TP 8n
\f[I]explain_mkostemp_or_die\fP(3)
create a unique temporary file and report errors
.TP 8n
\f[I]explain_mkstemp\fP(3)
Explain \f[I]mkstemp\fP(3) errors
.TP 8n
\f[I]explain_mkstemp_or_die\fP(3)
create a unique temporary file and report errors
.TP 8n
\f[I]explain_mktemp\fP(3)
Explain \f[I]mktemp\fP(3) errors
.TP 8n
\f[I]explain_mktemp_or_die\fP(3)
make a unique temporary filename and report errors
.TP 8n
\f[I]explain_mmap\fP(3)
Explain \f[I]mmap\fP(2) errors
.TP 8n
\f[I]explain_mmap_or_die\fP(3)
map file or device into memory and report errors
.TP 8n
\f[I]explain_mount\fP(3)
Explain \f[I]mount\fP(2) errors
.TP 8n
\f[I]explain_mount_or_die\fP(3)
mount file system and report errors
.TP 8n
\f[I]explain_munmap\fP(3)
Explain \f[I]munmap\fP(2) errors
.TP 8n
\f[I]explain_munmap_or_die\fP(3)
unmap a file or device from memory and report errors
.\" ----------  N  ---------------------------------------------------------
.TP 8n
\f[I]explain_nanosleep\fP(3)
Explain \f[I]nanosleep\fP(2) errors
.TP 8n
\f[I]explain_nanosleep_or_die\fP(3)
    high\[hy]resolution sleep and report errors
.TP 8n
\f[I]explain_nice\fP(3)
Explain \f[I]nice\fP(2) errors
.TP 8n
\f[I]explain_nice_or_die\fP(3)
change process priority and report errors
.\" ----------  O  ---------------------------------------------------------
.TP 8n
\f[I]explain_open\fP(3)
Explain \f[I]open\fP(2) errors
.TP 8n
\f[I]explain_open_or_die\fP(3)
open files and report errors
.TP 8n
\f[I]explain_openat\fP(3)
Explain \f[I]openat\fP(2) errors
.TP 8n
\f[I]explain_openat_or_die\fP(3)
open a file relative to a directory file descriptor and report errors
.TP 8n
\f[I]explain_opendir\fP(3)
Explain \f[I]opendir\fP(3) errors
.TP 8n
\f[I]explain_opendir_or_die\fP(3)
open a directory and report errors
.\" ----------  P  ---------------------------------------------------------
.TP 8n
\f[I]explain_pathconf\fP(3)
Explain \f[I]pathconf\fP(3) errors
.TP 8n
\f[I]explain_pathconf_or_die\fP(3)
get configuration values for files and report errors
.TP 8n
\f[I]explain_pclose\fP(3)
Explain \f[I]pclose\fP(3) errors
.TP 8n
\f[I]explain_pclose_or_die\fP(3)
Execute \f[I]pclose\fP(3) and report errors
.TP 8n
\f[I]explain_pipe\fP(3)
Explain \f[I]pipe\fP(2) errors
.TP 8n
\f[I]explain_pipe_or_die\fP(3)
Execute \f[I]pipe\fP(2) and report errors
.TP 8n
\f[I]explain_pipe2\fP(3)
Explain \f[I]pipe2\fP(2) errors
.TP 8n
\f[I]explain_pipe2_or_die\fP(3)
create pipe and report errors
.TP 8n
\f[I]explain_poll\fP(3)
Explain \f[I]poll\fP(2) errors
.TP 8n
\f[I]explain_poll_or_die\fP(3)
wait for some event on a file descriptor and report errors
.TP 8n
\f[I]explain_popen\fP(3)
Explain \f[I]popen\fP(3) errors
.TP 8n
\f[I]explain_popen_or_die\fP(3)
Execute \f[I]popen\fP(3) and report errors
.TP 8n
\f[I]explain_pread\fP(3)
Explain \f[I]pread\fP(2) errors
.TP 8n
\f[I]explain_pread_or_die\fP(3)
read from a file descriptor at a given offset and report errors
.TP 8n
\f[I]explain_printf\fP(3)
Explain \f[I]printf\fP(3) errors
.TP 8n
\f[I]explain_printf_or_die\fP(3)
formatted output conversion and report errors
.TP 8n
\f[I]explain_ptrace\fP(3)
Explain \f[I]ptrace\fP(2) errors
.TP 8n
\f[I]explain_ptrace_or_die\fP(3)
process trace and report errors
.TP 8n
\f[I]explain_putc\fP(3)
Explain \f[I]putc\fP(3) errors
.TP 8n
\f[I]explain_putc_or_die\fP(3)
output of characters and report errors
.TP 8n
\f[I]explain_putchar\fP(3)
Explain \f[I]putchar\fP(3) errors
.TP 8n
\f[I]explain_putchar_or_die\fP(3)
output of characters and report errors
.TP 8n
\f[I]explain_putenv\fP(3)
Explain \f[I]putenv\fP(3) errors
.TP 8n
\f[I]explain_putenv_or_die\fP(3)
change or add an environment variable and report errors
.TP 8n
\f[I]explain_puts\fP(3)
Explain \f[I]puts\fP(3) errors
.TP 8n
\f[I]explain_puts_or_die\fP(3)
write a string and a trailing newline to stdout and report errors
.TP 8n
\f[I]explain_putw\fP(3)
Explain \f[I]putw\fP(3) errors
.TP 8n
\f[I]explain_putw_or_die\fP(3)
output a word (int) and report errors
.TP 8n
\f[I]explain_pwrite\fP(3)
Explain \f[I]pwrite\fP(2) errors
.TP 8n
\f[I]explain_pwrite_or_die\fP(3)
write to a file descriptor at a given offset and report errors
.\" ----------  Q  ---------------------------------------------------------
.\" ----------  R  ---------------------------------------------------------
.TP 8n
\f[I]explain_raise\fP(3)
Explain \f[I]raise\fP(3) errors
.TP 8n
\f[I]explain_raise_or_die\fP(3)
send a signal to the caller and report errors
.TP 8n
\f[I]explain_read\fP(3)
Explain \f[I]read\fP(2) errors
.TP 8n
\f[I]explain_read_or_die\fP(3)
read from a file descriptor and report errors
.TP 8n
\f[I]explain_readdir\fP(3)
Explain \f[I]readdir\fP(3) errors
.TP 8n
\f[I]explain_readdir_or_die\fP(3)
read a directory and report errors
.TP 8n
\f[I]explain_readlink\fP(3)
Explain \f[I]readlink\fP(2) errors
.TP 8n
\f[I]explain_readlink_or_die\fP(3)
read value of a symbolic link and report errors
.TP 8n
\f[I]explain_readv\fP(3)
Explain \f[I]readv\fP(2) errors
.TP 8n
\f[I]explain_readv_or_die\fP(3)
read data into multiple buffers and report errors
.TP 8n
\f[I]explain_realloc\fP(3)
Explain \f[I]realloc\fP(3) errors
.TP 8n
\f[I]explain_realloc_or_die\fP(3)
Execute \f[I]realloc\fP(3) and report errors
.TP 8n
\f[I]explain_realpath\fP(3)
Explain \f[I]realpath\fP(3) errors
.TP 8n
\f[I]explain_realpath_or_die\fP(3)
return the canonicalized absolute pathname and report errors
.TP 8n
\f[I]explain_rename\fP(3)
Explain \f[I]rename\fP(2) errors
.TP 8n
\f[I]explain_rename_or_die\fP(3)
change the name or location of a file and report errors
.TP 8n
\f[I]explain_rmdir\fP(3)
Explain \f[I]rmdir\fP(2) errors
.TP 8n
\f[I]explain_rmdir_or_die\fP(3)
delete a directory and report errors
.\" ----------  S  ---------------------------------------------------------
.TP 8n
\f[I]explain_select\fP(3)
Explain \f[I]select\fP(2) errors
.TP 8n
\f[I]explain_select_or_die\fP(3)
execute \f[I]select\fP(2) and report errors
.TP 8n
\f[I]explain_setbuf\fP(3)
Explain \f[I]setbuf\fP(3) errors
.TP 8n
\f[I]explain_setbuffer\fP(3)
Explain \f[I]setbuffer\fP(3) errors
.TP 8n
\f[I]explain_setbuffer_or_die\fP(3)
stream buffering operations and report errors
.TP 8n
\f[I]explain_setbuf_or_die\fP(3)
set stream buffer and report errors
.TP 8n
\f[I]explain_setdomainname\fP(3)
Explain \f[I]setdomainname\fP(2) errors
.TP 8n
\f[I]explain_setdomainname_or_die\fP(3)
set domain name and report errors
.TP 8n
\f[I]explain_setenv\fP(3)
Explain \f[I]setenv\fP(3) errors
.TP 8n
\f[I]explain_setenv_or_die\fP(3)
change or add an environment variable and report errors
.TP 8n
\f[I]explain_setgid\fP(3)
Explain \f[I]setgid\fP(2) errors
.TP 8n
\f[I]explain_setgid_or_die\fP(3)
set group identity and report errors
.TP 8n
\f[I]explain_setgrent\fP(3)
Explain \f[I]setgrent\fP(3) errors
.TP 8n
\f[I]explain_setgrent_or_die\fP(3)
rewind to the start of the group database and report errors
.TP 8n
\f[I]explain_setgroups\fP(3)
Explain \f[I]setgroups\fP(2) errors
.TP 8n
\f[I]explain_setgroups_or_die\fP(3)
get list of supplementary group IDs and report errors
.TP 8n
\f[I]explain_sethostname\fP(3)
Explain \f[I]sethostname\fP(2) errors
.TP 8n
\f[I]explain_sethostname_or_die\fP(3)
set hostname and report errors
.TP 8n
\f[I]explain_setlinebuf\fP(3)
Explain \f[I]setlinebuf\fP(3) errors
.TP 8n
\f[I]explain_setlinebuf_or_die\fP(3)
stream buffering operations and report errors
.TP 8n
\f[I]explain_setpgid\fP(3)
Explain \f[I]setpgid\fP(2) errors
.TP 8n
\f[I]explain_setpgid_or_die\fP(3)
set process group and report errors
.TP 8n
\f[I]explain_setpgrp\fP(3)
Explain \f[I]setpgrp\fP(2) errors
.TP 8n
\f[I]explain_setpgrp_or_die\fP(3)
set process group and report errors
.TP 8n
\f[I]explain_setpriority\fP(3)
Explain \f[I]setpriority\fP(2) errors
.TP 8n
\f[I]explain_setpriority_or_die\fP(3)
set program scheduling priority and report errors
.TP 8n
\f[I]explain_setregid\fP(3)
Explain \f[I]setregid\fP(2) errors
.TP 8n
\f[I]explain_setregid_or_die\fP(3)
set real and/or effective group ID and report errors
.TP 8n
\f[I]explain_setreuid\fP(3)
Explain \f[I]setreuid\fP(2) errors
.TP 8n
\f[I]explain_setreuid_or_die\fP(3)
set the real and effective user ID and report errors
.TP 8n
\f[I]explain_setresgid\fP(3)
Explain \f[I]setresgid\fP(2) errors
.TP 8n
\f[I]explain_setresgid_or_die\fP(3)
set real, effective and saved group ID and report errors
.TP 8n
\f[I]explain_setresuid\fP(3)
Explain \f[I]setresuid\fP(2) errors
.TP 8n
\f[I]explain_setresuid_or_die\fP(3)
set real, effective and saved user ID and report errors
.TP 8n
\f[I]explain_setreuid\fP(3)
Explain \f[I]setreuid\fP(2) errors
.TP 8n
\f[I]explain_setreuid_or_die\fP(3)
set real and/or effective user ID and report errors
.TP 8n
\f[I]explain_setsid\fP(3)
Explain \f[I]setsid\fP(2) errors
.TP 8n
\f[I]explain_setsid_or_die\fP(3)
creates a session and sets the process group ID and report errors
.TP 8n
\f[I]explain_setsockopt\fP(3)
Explain \f[I]setsockopt\fP(2) errors
.TP 8n
\f[I]explain_setsockopt_or_die\fP(3)
execute \f[I]setsockopt\fP(2) and report errors
.TP 8n
\f[I]explain_settimeofday\fP(3)
Explain \f[I]settimeofday\fP(2) errors
.TP 8n
\f[I]explain_settimeofday_or_die\fP(3)
sets system time and report errors
.TP 8n
\f[I]explain_setuid\fP(3)
Explain \f[I]setuid\fP(2) errors
.TP 8n
\f[I]explain_setuid_or_die\fP(3)
set user identity and report errors
.TP 8n
\f[I]explain_setvbuf\fP(3)
Explain \f[I]setvbuf\fP(3) errors
.TP 8n
\f[I]explain_setvbuf_or_die\fP(3)
stream buffering operations and report errors
.TP 8n
\f[I]explain_shmat\fP(3)
Explain \f[I]shmat\fP(2) errors
.TP 8n
\f[I]explain_shmat_or_die\fP(3)
shared memory attach and report errors
.TP 8n
\f[I]explain_shmctl\fP(3)
Explain \f[I]shmctl\fP(2) errors
.TP 8n
\f[I]explain_shmctl_or_die\fP(3)
shared memory control and report errors
.TP 8n
\f[I]explain_signalfd\fP(3)
Explain \f[I]signalfd\fP(2) errors
.TP 8n
\f[I]explain_signalfd_or_die\fP(3)
create a file descriptor for accepting signals and report errors
.TP 8n
\f[I]explain_sleep\fP(3)
Explain \f[I]sleep\fP(3) errors
.TP 8n
\f[I]explain_sleep_or_die\fP(3)
Sleep for the specified number of seconds and report errors
.TP 8n
\f[I]explain_socket\fP(3)
Explain \f[I]socket\fP(2) errors
.TP 8n
\f[I]explain_socket_or_die\fP(3)
create an endpoint for communication and report errors
.TP 8n
\f[I]explain_socketpair\fP(3)
Explain \f[I]socketpair\fP(2) errors
.TP 8n
\f[I]explain_socketpair_or_die\fP(3)
create a pair of connected sockets and report errors
.TP 8n
\f[I]explain_sprintf\fP(3)
Explain \f[I]sprintf\fP(3) errors
.TP 8n
\f[I]explain_sprintf_or_die\fP(3)
formatted output conversion and report errors
.TP 8n
\f[I]explain_stat\fP(3)
Explain \f[I]stat\fP(2) errors
.TP 8n
\f[I]explain_statfs\fP(3)
Explain \f[I]statfs\fP(2) errors
.TP 8n
\f[I]explain_statfs_or_die\fP(3)
get file system statistics and report errors
.TP 8n
\f[I]explain_statvfs\fP(3)
Explain \f[I]statvfs\fP(2) errors
.TP 8n
\f[I]explain_statvfs_or_die\fP(3)
get file system statistics and report errors
.TP 8n
\f[I]explain_stime\fP(3)
Explain \f[I]stime\fP(2) errors
.TP 8n
\f[I]explain_stime_or_die\fP(3)
set system time and report errors
.TP 8n
\f[I]explain_strcoll\fP(3)
Explain \f[I]strcoll\fP(3) errors
.TP 8n
\f[I]explain_strcoll_or_die\fP(3)
compare two strings using the current locale and report errors
.TP 8n
\f[I]explain_strdup\fP(3)
Explain \f[I]strdup\fP(3) errors
.TP 8n
\f[I]explain_strdup_or_die\fP(3)
duplicate a string and report errors
.TP 8n
\f[I]explain_strndup\fP(3)
Explain \f[I]strndup\fP(3) errors
.TP 8n
\f[I]explain_strndup_or_die\fP(3)
duplicate a string and report errors
.TP 8n
\f[I]explain_strtod\fP(3)
Explain \f[I]strtod\fP(3) errors
.TP 8n
\f[I]explain_strtod_or_die\fP(3)
convert string to floating\[hy]point number and report errors
.TP 8n
\f[I]explain_strtof\fP(3)
Explain \f[I]strtof\fP(3) errors
.TP 8n
\f[I]explain_strtof_or_die\fP(3)
convert string to floating\[hy]point number and report errors
.TP 8n
\f[I]explain_strtol\fP(3)
Explain \f[I]strtol\fP(3) errors
.TP 8n
\f[I]explain_strtol_or_die\fP(3)
convert a string to a long integer and report errors
.TP 8n
\f[I]explain_strtold\fP(3)
Explain \f[I]strtold\fP(3) errors
.TP 8n
\f[I]explain_strtold_or_die\fP(3)
convert string to floating\[hy]point number and report errors
.TP 8n
\f[I]explain_strtoll\fP(3)
Explain \f[I]strtoll\fP(3) errors
.TP 8n
\f[I]explain_strtoll_or_die\fP(3)
convert a string to a long long integer and report errors
.TP 8n
\f[I]explain_strtoul\fP(3)
Explain \f[I]strtoul\fP(3) errors
.TP 8n
\f[I]explain_strtoul_or_die\fP(3)
convert a string to a long long integer and report errors
.TP 8n
\f[I]explain_strtoull\fP(3)
Explain \f[I]strtoull\fP(3) errors
.TP 8n
\f[I]explain_strtoull_or_die\fP(3)
convert a string to an unsigned long long integer and report errors
.TP 8n
\f[I]explain_symlink\fP(3)
Explain \f[I]symlink\fP(2) errors
.TP 8n
\f[I]explain_symlink_or_die\fP(3)
make a new name for a file and report errors
.TP 8n
\f[I]explain_system\fP(3)
Explain \f[I]system\fP(3) errors
.TP 8n
\f[I]explain_system_or_die\fP(3)
execute a shell command and report errors
.\" ----------  T  ---------------------------------------------------------
.TP 8n
\f[I]explain_tcdrain\fP(3)
Explain \f[I]tcdrain\fP(3) errors
.TP 8n
\f[I]explain_tcdrain_or_die\fP(3)
Execute \f[I]tcdrain\fP(3) and report errors
.TP 8n
\f[I]explain_tcflow\fP(3)
Explain \f[I]tcflow\fP(3) errors
.TP 8n
\f[I]explain_tcflow_or_die\fP(3)
Execute \f[I]tcflow\fP(3) and report errors
.TP 8n
\f[I]explain_tcflush\fP(3)
Explain \f[I]tcflush\fP(3) errors
.TP 8n
\f[I]explain_tcflush_or_die\fP(3)
discard terminal data and report errors
.TP 8n
\f[I]explain_tcgetattr\fP(3)
Explain \f[I]tcgetattr\fP(3) errors
.TP 8n
\f[I]explain_tcgetattr_or_die\fP(3)
get terminal parameters and report errors
.TP 8n
\f[I]explain_tcsendbreak\fP(3)
Explain \f[I]tcsendbreak\fP(3) errors
.TP 8n
\f[I]explain_tcsendbreak_or_die\fP(3)
send terminal line break and report errors
.TP 8n
\f[I]explain_tcsetattr\fP(3)
Explain \f[I]tcsetattr\fP(3) errors
.TP 8n
\f[I]explain_tcsetattr_or_die\fP(3)
set terminal attributes and report errors
.TP 8n
\f[I]explain_telldir\fP(3)
Explain \f[I]telldir\fP(3) errors
.TP 8n
\f[I]explain_telldir_or_die\fP(3)
return current location in directory stream and report errors
.TP 8n
\f[I]explain_tempnam\fP(3)
Explain \f[I]tempnam\fP(3) errors
.TP 8n
\f[I]explain_tempnam_or_die\fP(3)
create a name for a temporary file and report errors
.TP 8n
\f[I]explain_time\fP(3)
Explain \f[I]time\fP(2) errors
.TP 8n
\f[I]explain_time_or_die\fP(3)
get time in seconds and report errors
.TP 8n
\f[I]explain_timerfd_create\fP(3)
Explain \f[I]timerfd_create\fP(2) errors
.TP 8n
\f[I]explain_timerfd_create_or_die\fP(3)
timers that notify via file descriptors and report errors
.TP 8n
\f[I]explain_tmpfile\fP(3)
Explain \f[I]tmpfile\fP(3) errors
.TP 8n
\f[I]explain_tmpfile_or_die\fP(3)
create a temporary file and report errors
.TP 8n
\f[I]explain_tmpnam\fP(3)
Explain \f[I]tmpnam\fP(3) errors
.TP 8n
\f[I]explain_tmpnam_or_die\fP(3)
create a name for a temporary file and report errors
.TP 8n
\f[I]explain_truncate\fP(3)
Explain \f[I]truncate\fP(2) errors
.TP 8n
\f[I]explain_truncate_or_die\fP(3)
truncate a file to a specified length and report errors
.\" ----------  U  ---------------------------------------------------------
.TP 8n
\f[I]explain_usleep\fP(3)
Explain \f[I]usleep\fP(3) errors
.TP 8n
\f[I]explain_usleep_or_die\fP(3)
suspend execution for microsecond intervals and report errors
.TP 8n
\f[I]explain_uname\fP(3)
Explain \f[I]uname\fP(2) errors
.TP 8n
\f[I]explain_uname_or_die\fP(3)
get name and information about current kernel and report errors
.TP 8n
\f[I]explain_ungetc\fP(3)
Explain \f[I]ungetc\fP(3) errors
.TP 8n
\f[I]explain_ungetc_or_die\fP(3)
push a character back to a stream and report errors
.TP 8n
\f[I]explain_unlink\fP(3)
Explain \f[I]unlink\fP(2) errors
.TP 8n
\f[I]explain_unlink_or_die\fP(3)
delete a file and report errors
.TP 8n
\f[I]explain_unsetenv\fP(3)
Explain \f[I]unsetenv\fP(3) errors
.TP 8n
\f[I]explain_unsetenv_or_die\fP(3)
remove an environment variable and report errors
.TP 8n
\f[I]explain_ustat\fP(3)
Explain \f[I]ustat\fP(2) errors
.TP 8n
\f[I]explain_ustat_or_die\fP(3)
get file system statistics and report errors
.TP 8n
\f[I]explain_utime\fP(3)
Explain \f[I]utime\fP(2) errors
.TP 8n
\f[I]explain_utime_or_die\fP(3)
change file last access and modification times and report errors
.TP 8n
\f[I]explain_utimens\fP(3)
Explain \f[I]utimens\fP(2) errors
.TP 8n
\f[I]explain_utimens_or_die\fP(3)
change file last access and modification times and report errors
.TP 8n
\f[I]explain_utimensat\fP(3)
Explain \f[I]utimensat\fP(2) errors
.TP 8n
\f[I]explain_utimensat_or_die\fP(3)
change file timestamps with nanosecond precision and report errors
.TP 8n
\f[I]explain_utimes\fP(3)
Explain \f[I]utimes\fP(2) errors
.TP 8n
\f[I]explain_utimes_or_die\fP(3)
change file last access and modification times and report errors
.\" ----------  V  ---------------------------------------------------------
.TP 8n
\f[I]explain_vasprintf\fP(3)
Explain \f[I]vasprintf\fP(3) errors
.TP 8n
\f[I]explain_vasprintf_or_die\fP(3)
print to allocated string and report errors
.TP 8n
\f[I]explain_vfork\fP(3)
Explain \f[I]vfork\fP(2) errors
.TP 8n
\f[I]explain_vfork_or_die\fP(3)
create a child process and block parent and report errors
.TP 8n
\f[I]explain_vfprintf\fP(3)
Explain \f[I]vfprintf\fP(3) errors
.TP 8n
\f[I]explain_vfprintf_or_die\fP(3)
formatted output conversion and report errors
.TP 8n
\f[I]explain_vprintf\fP(3)
Explain \f[I]vprintf\fP(3) errors
.TP 8n
\f[I]explain_vprintf_or_die\fP(3)
formatted output conversion and report errors
.TP 8n
\f[I]explain_vsnprintf\fP(3)
Explain \f[I]vsnprintf\fP(3) errors
.TP 8n
\f[I]explain_vsnprintf_or_die\fP(3)
formatted output conversion and report errors
.TP 8n
\f[I]explain_snprintf\fP(3)
Explain \f[I]snprintf\fP(3) errors
.TP 8n
\f[I]explain_snprintf_or_die\fP(3)
formatted output conversion and report errors
.TP 8n
\f[I]explain_vsprintf\fP(3)
Explain \f[I]vsprintf\fP(3) errors
.TP 8n
\f[I]explain_vsprintf_or_die\fP(3)
formatted output conversion and report errors
.\" ----------  W  ---------------------------------------------------------
.TP 8n
\f[I]explain_wait\fP(3)
Explain \f[I]wait\fP(2) errors
.TP 8n
\f[I]explain_wait_or_die\fP(3)
wait for process to change state and report errors
.TP 8n
\f[I]explain_wait3\fP(3)
Explain \f[I]wait3\fP(2) errors
.TP 8n
\f[I]explain_wait3_or_die\fP(3)
wait for process to change state and report errors
.TP 8n
\f[I]explain_wait4\fP(3)
Explain \f[I]wait4\fP(2) errors
.TP 8n
\f[I]explain_wait4_or_die\fP(3)
wait for process to change state and report errors
.TP 8n
\f[I]explain_waitpid\fP(3)
Explain \f[I]waitpid\fP(2) errors
.TP 8n
\f[I]explain_waitpid_or_die\fP(3)
wait for process to change state and report errors
.TP 8n
\f[I]explain_write\fP(3)
Explain \f[I]write\fP(2) errors
.TP 8n
\f[I]explain_write_or_die\fP(3)
write to a file descriptor and report errors
.TP 8n
\f[I]explain_writev\fP(3)
Explain \f[I]writev\fP(2) errors
.TP 8n
\f[I]explain_writev_or_die\fP(3)
write data from multiple buffers and report errors
.\" ----------  X  ---------------------------------------------------------
.\" ----------  Y  ---------------------------------------------------------
.\" ----------  Z  ---------------------------------------------------------
.\" ------------------------------------------------------------------------
.PP
There are plans for additional coverage.
This list is expected to expand in later releases of this library.
.SH SEE ALSO
.TP 8n
\f[I]errno\fP(3)
number of last error
.TP 8n
\f[I]perror\fP(3)
print a system error message
.TP 8n
\f[I]strerror\fP(3)
return string describing error number
.SH COPYRIGHT
.so etc/version.so
.if n .ds C) (C)
.if t .ds C) \(co
libexplain version \*(v)
.br
Copyright \*(C) 2008 Peter Miller
.SH AUTHOR
Written by Peter Miller <pmiller@opensource.org.au>
.\" vim: set ts=8 sw=4 et :