forked from lattera/glibc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.texi
1729 lines (1432 loc) · 52.4 KB
/
conf.texi
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
@node System Configuration, Cryptographic Functions, System Management, Top
@c %MENU% Parameters describing operating system limits
@chapter System Configuration Parameters
The functions and macros listed in this chapter give information about
configuration parameters of the operating system---for example, capacity
limits, presence of optional POSIX features, and the default path for
executable files (@pxref{String Parameters}).
@menu
* General Limits:: Constants and functions that describe
various process-related limits that have
one uniform value for any given machine.
* System Options:: Optional POSIX features.
* Version Supported:: Version numbers of POSIX.1 and POSIX.2.
* Sysconf:: Getting specific configuration values
of general limits and system options.
* Minimums:: Minimum values for general limits.
* Limits for Files:: Size limitations that pertain to individual files.
These can vary between file systems
or even from file to file.
* Options for Files:: Optional features that some files may support.
* File Minimums:: Minimum values for file limits.
* Pathconf:: Getting the limit values for a particular file.
* Utility Limits:: Capacity limits of some POSIX.2 utility programs.
* Utility Minimums:: Minimum allowable values of those limits.
* String Parameters:: Getting the default search path.
@end menu
@node General Limits
@section General Capacity Limits
@cindex POSIX capacity limits
@cindex limits, POSIX
@cindex capacity limits, POSIX
The POSIX.1 and POSIX.2 standards specify a number of parameters that
describe capacity limitations of the system. These limits can be fixed
constants for a given operating system, or they can vary from machine to
machine. For example, some limit values may be configurable by the
system administrator, either at run time or by rebuilding the kernel,
and this should not require recompiling application programs.
@pindex limits.h
Each of the following limit parameters has a macro that is defined in
@file{limits.h} only if the system has a fixed, uniform limit for the
parameter in question. If the system allows different file systems or
files to have different limits, then the macro is undefined; use
@code{sysconf} to find out the limit that applies at a particular time
on a particular machine. @xref{Sysconf}.
Each of these parameters also has another macro, with a name starting
with @samp{_POSIX}, which gives the lowest value that the limit is
allowed to have on @emph{any} POSIX system. @xref{Minimums}.
@cindex limits, program argument size
@comment limits.h
@comment POSIX.1
@deftypevr Macro int ARG_MAX
If defined, the unvarying maximum combined length of the @var{argv} and
@var{environ} arguments that can be passed to the @code{exec} functions.
@end deftypevr
@cindex limits, number of processes
@comment limits.h
@comment POSIX.1
@deftypevr Macro int CHILD_MAX
If defined, the unvarying maximum number of processes that can exist
with the same real user ID at any one time. In BSD and GNU, this is
controlled by the @code{RLIMIT_NPROC} resource limit; @pxref{Limits on
Resources}.
@end deftypevr
@cindex limits, number of open files
@comment limits.h
@comment POSIX.1
@deftypevr Macro int OPEN_MAX
If defined, the unvarying maximum number of files that a single process
can have open simultaneously. In BSD and GNU, this is controlled
by the @code{RLIMIT_NOFILE} resource limit; @pxref{Limits on Resources}.
@end deftypevr
@comment limits.h
@comment POSIX.1
@deftypevr Macro int STREAM_MAX
If defined, the unvarying maximum number of streams that a single
process can have open simultaneously. @xref{Opening Streams}.
@end deftypevr
@cindex limits, time zone name length
@comment limits.h
@comment POSIX.1
@deftypevr Macro int TZNAME_MAX
If defined, the unvarying maximum length of a time zone name.
@xref{Time Zone Functions}.
@end deftypevr
These limit macros are always defined in @file{limits.h}.
@cindex limits, number of supplementary group IDs
@comment limits.h
@comment POSIX.1
@deftypevr Macro int NGROUPS_MAX
The maximum number of supplementary group IDs that one process can have.
The value of this macro is actually a lower bound for the maximum. That
is, you can count on being able to have that many supplementary group
IDs, but a particular machine might let you have even more. You can use
@code{sysconf} to see whether a particular machine will let you have
more (@pxref{Sysconf}).
@end deftypevr
@comment limits.h
@comment POSIX.1
@deftypevr Macro int SSIZE_MAX
The largest value that can fit in an object of type @code{ssize_t}.
Effectively, this is the limit on the number of bytes that can be read
or written in a single operation.
This macro is defined in all POSIX systems because this limit is never
configurable.
@end deftypevr
@comment limits.h
@comment POSIX.2
@deftypevr Macro int RE_DUP_MAX
The largest number of repetitions you are guaranteed is allowed in the
construct @samp{\@{@var{min},@var{max}\@}} in a regular expression.
The value of this macro is actually a lower bound for the maximum. That
is, you can count on being able to have that many repetitions, but a
particular machine might let you have even more. You can use
@code{sysconf} to see whether a particular machine will let you have
more (@pxref{Sysconf}). And even the value that @code{sysconf} tells
you is just a lower bound---larger values might work.
This macro is defined in all POSIX.2 systems, because POSIX.2 says it
should always be defined even if there is no specific imposed limit.
@end deftypevr
@node System Options
@section Overall System Options
@cindex POSIX optional features
@cindex optional POSIX features
POSIX defines certain system-specific options that not all POSIX systems
support. Since these options are provided in the kernel, not in the
library, simply using @theglibc{} does not guarantee any of these
features is supported; it depends on the system you are using.
@pindex unistd.h
You can test for the availability of a given option using the macros in
this section, together with the function @code{sysconf}. The macros are
defined only if you include @file{unistd.h}.
For the following macros, if the macro is defined in @file{unistd.h},
then the option is supported. Otherwise, the option may or may not be
supported; use @code{sysconf} to find out. @xref{Sysconf}.
@comment unistd.h
@comment POSIX.1
@deftypevr Macro int _POSIX_JOB_CONTROL
If this symbol is defined, it indicates that the system supports job
control. Otherwise, the implementation behaves as if all processes
within a session belong to a single process group. @xref{Job Control}.
@end deftypevr
@comment unistd.h
@comment POSIX.1
@deftypevr Macro int _POSIX_SAVED_IDS
If this symbol is defined, it indicates that the system remembers the
effective user and group IDs of a process before it executes an
executable file with the set-user-ID or set-group-ID bits set, and that
explicitly changing the effective user or group IDs back to these values
is permitted. If this option is not defined, then if a nonprivileged
process changes its effective user or group ID to the real user or group
ID of the process, it can't change it back again. @xref{Enable/Disable
Setuid}.
@end deftypevr
For the following macros, if the macro is defined in @file{unistd.h},
then its value indicates whether the option is supported. A value of
@code{-1} means no, and any other value means yes. If the macro is not
defined, then the option may or may not be supported; use @code{sysconf}
to find out. @xref{Sysconf}.
@comment unistd.h
@comment POSIX.2
@deftypevr Macro int _POSIX2_C_DEV
If this symbol is defined, it indicates that the system has the POSIX.2
C compiler command, @code{c89}. @Theglibc{} always defines this
as @code{1}, on the assumption that you would not have installed it if
you didn't have a C compiler.
@end deftypevr
@comment unistd.h
@comment POSIX.2
@deftypevr Macro int _POSIX2_FORT_DEV
If this symbol is defined, it indicates that the system has the POSIX.2
Fortran compiler command, @code{fort77}. @Theglibc{} never
defines this, because we don't know what the system has.
@end deftypevr
@comment unistd.h
@comment POSIX.2
@deftypevr Macro int _POSIX2_FORT_RUN
If this symbol is defined, it indicates that the system has the POSIX.2
@code{asa} command to interpret Fortran carriage control. @Theglibc{}
never defines this, because we don't know what the system has.
@end deftypevr
@comment unistd.h
@comment POSIX.2
@deftypevr Macro int _POSIX2_LOCALEDEF
If this symbol is defined, it indicates that the system has the POSIX.2
@code{localedef} command. @Theglibc{} never defines this, because
we don't know what the system has.
@end deftypevr
@comment unistd.h
@comment POSIX.2
@deftypevr Macro int _POSIX2_SW_DEV
If this symbol is defined, it indicates that the system has the POSIX.2
commands @code{ar}, @code{make}, and @code{strip}. @Theglibc{}
always defines this as @code{1}, on the assumption that you had to have
@code{ar} and @code{make} to install the library, and it's unlikely that
@code{strip} would be absent when those are present.
@end deftypevr
@node Version Supported
@section Which Version of POSIX is Supported
@comment unistd.h
@comment POSIX.1
@deftypevr Macro {long int} _POSIX_VERSION
This constant represents the version of the POSIX.1 standard to which
the implementation conforms. For an implementation conforming to the
1995 POSIX.1 standard, the value is the integer @code{199506L}.
@code{_POSIX_VERSION} is always defined (in @file{unistd.h}) in any
POSIX system.
@strong{Usage Note:} Don't try to test whether the system supports POSIX
by including @file{unistd.h} and then checking whether
@code{_POSIX_VERSION} is defined. On a non-POSIX system, this will
probably fail because there is no @file{unistd.h}. We do not know of
@emph{any} way you can reliably test at compilation time whether your
target system supports POSIX or whether @file{unistd.h} exists.
@end deftypevr
@comment unistd.h
@comment POSIX.2
@deftypevr Macro {long int} _POSIX2_C_VERSION
This constant represents the version of the POSIX.2 standard which the
library and system kernel support. We don't know what value this will
be for the first version of the POSIX.2 standard, because the value is
based on the year and month in which the standard is officially adopted.
The value of this symbol says nothing about the utilities installed on
the system.
@strong{Usage Note:} You can use this macro to tell whether a POSIX.1
system library supports POSIX.2 as well. Any POSIX.1 system contains
@file{unistd.h}, so include that file and then test @code{defined
(_POSIX2_C_VERSION)}.
@end deftypevr
@node Sysconf
@section Using @code{sysconf}
When your system has configurable system limits, you can use the
@code{sysconf} function to find out the value that applies to any
particular machine. The function and the associated @var{parameter}
constants are declared in the header file @file{unistd.h}.
@menu
* Sysconf Definition:: Detailed specifications of @code{sysconf}.
* Constants for Sysconf:: The list of parameters @code{sysconf} can read.
* Examples of Sysconf:: How to use @code{sysconf} and the parameter
macros properly together.
@end menu
@node Sysconf Definition
@subsection Definition of @code{sysconf}
@comment unistd.h
@comment POSIX.1
@deftypefun {long int} sysconf (int @var{parameter})
This function is used to inquire about runtime system parameters. The
@var{parameter} argument should be one of the @samp{_SC_} symbols listed
below.
The normal return value from @code{sysconf} is the value you requested.
A value of @code{-1} is returned both if the implementation does not
impose a limit, and in case of an error.
The following @code{errno} error conditions are defined for this function:
@table @code
@item EINVAL
The value of the @var{parameter} is invalid.
@end table
@end deftypefun
@node Constants for Sysconf
@subsection Constants for @code{sysconf} Parameters
Here are the symbolic constants for use as the @var{parameter} argument
to @code{sysconf}. The values are all integer constants (more
specifically, enumeration type values).
@vtable @code
@comment unistd.h
@comment POSIX.1
@item _SC_ARG_MAX
Inquire about the parameter corresponding to @code{ARG_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_CHILD_MAX
Inquire about the parameter corresponding to @code{CHILD_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_OPEN_MAX
Inquire about the parameter corresponding to @code{OPEN_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_STREAM_MAX
Inquire about the parameter corresponding to @code{STREAM_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_TZNAME_MAX
Inquire about the parameter corresponding to @code{TZNAME_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_NGROUPS_MAX
Inquire about the parameter corresponding to @code{NGROUPS_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_JOB_CONTROL
Inquire about the parameter corresponding to @code{_POSIX_JOB_CONTROL}.
@comment unistd.h
@comment POSIX.1
@item _SC_SAVED_IDS
Inquire about the parameter corresponding to @code{_POSIX_SAVED_IDS}.
@comment unistd.h
@comment POSIX.1
@item _SC_VERSION
Inquire about the parameter corresponding to @code{_POSIX_VERSION}.
@comment unistd.h
@comment POSIX.1
@item _SC_CLK_TCK
Inquire about the number of clock ticks per second; @pxref{CPU Time}.
The corresponding parameter @code{CLK_TCK} is obsolete.
@comment unistd.h
@comment GNU
@item _SC_CHARCLASS_NAME_MAX
Inquire about the parameter corresponding to maximal length allowed for
a character class name in an extended locale specification. These
extensions are not yet standardized and so this option is not standardized
as well.
@comment unistdh.h
@comment POSIX.1
@item _SC_REALTIME_SIGNALS
Inquire about the parameter corresponding to @code{_POSIX_REALTIME_SIGNALS}.
@comment unistd.h
@comment POSIX.1
@item _SC_PRIORITY_SCHEDULING
Inquire about the parameter corresponding to @code{_POSIX_PRIORITY_SCHEDULING}.
@comment unistd.h
@comment POSIX.1
@item _SC_TIMERS
Inquire about the parameter corresponding to @code{_POSIX_TIMERS}.
@comment unistd.h
@comment POSIX.1
@item _SC_ASYNCHRONOUS_IO
Inquire about the parameter corresponding to @code{_POSIX_ASYNCHRONOUS_IO}.
@comment unistd.h
@comment POSIX.1
@item _SC_PRIORITIZED_IO
Inquire about the parameter corresponding to @code{_POSIX_PRIORITIZED_IO}.
@comment unistd.h
@comment POSIX.1
@item _SC_SYNCHRONIZED_IO
Inquire about the parameter corresponding to @code{_POSIX_SYNCHRONIZED_IO}.
@comment unistd.h
@comment POSIX.1
@item _SC_FSYNC
Inquire about the parameter corresponding to @code{_POSIX_FSYNC}.
@comment unistd.h
@comment POSIX.1
@item _SC_MAPPED_FILES
Inquire about the parameter corresponding to @code{_POSIX_MAPPED_FILES}.
@comment unistd.h
@comment POSIX.1
@item _SC_MEMLOCK
Inquire about the parameter corresponding to @code{_POSIX_MEMLOCK}.
@comment unistd.h
@comment POSIX.1
@item _SC_MEMLOCK_RANGE
Inquire about the parameter corresponding to @code{_POSIX_MEMLOCK_RANGE}.
@comment unistd.h
@comment POSIX.1
@item _SC_MEMORY_PROTECTION
Inquire about the parameter corresponding to @code{_POSIX_MEMORY_PROTECTION}.
@comment unistd.h
@comment POSIX.1
@item _SC_MESSAGE_PASSING
Inquire about the parameter corresponding to @code{_POSIX_MESSAGE_PASSING}.
@comment unistd.h
@comment POSIX.1
@item _SC_SEMAPHORES
Inquire about the parameter corresponding to @code{_POSIX_SEMAPHORES}.
@comment unistd.h
@comment POSIX.1
@item _SC_SHARED_MEMORY_OBJECTS
Inquire about the parameter corresponding to@*
@code{_POSIX_SHARED_MEMORY_OBJECTS}.
@comment unistd.h
@comment POSIX.1
@item _SC_AIO_LISTIO_MAX
Inquire about the parameter corresponding to @code{_POSIX_AIO_LISTIO_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_AIO_MAX
Inquire about the parameter corresponding to @code{_POSIX_AIO_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_AIO_PRIO_DELTA_MAX
Inquire the value by which a process can decrease its asynchronous I/O
priority level from its own scheduling priority. This corresponds to the
run-time invariant value @code{AIO_PRIO_DELTA_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_DELAYTIMER_MAX
Inquire about the parameter corresponding to @code{_POSIX_DELAYTIMER_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_MQ_OPEN_MAX
Inquire about the parameter corresponding to @code{_POSIX_MQ_OPEN_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_MQ_PRIO_MAX
Inquire about the parameter corresponding to @code{_POSIX_MQ_PRIO_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_RTSIG_MAX
Inquire about the parameter corresponding to @code{_POSIX_RTSIG_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_SEM_NSEMS_MAX
Inquire about the parameter corresponding to @code{_POSIX_SEM_NSEMS_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_SEM_VALUE_MAX
Inquire about the parameter corresponding to @code{_POSIX_SEM_VALUE_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_SIGQUEUE_MAX
Inquire about the parameter corresponding to @code{_POSIX_SIGQUEUE_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_TIMER_MAX
Inquire about the parameter corresponding to @code{_POSIX_TIMER_MAX}.
@comment unistd.h
@comment POSIX.1g
@item _SC_PII
Inquire about the parameter corresponding to @code{_POSIX_PII}.
@comment unistd.h
@comment POSIX.1g
@item _SC_PII_XTI
Inquire about the parameter corresponding to @code{_POSIX_PII_XTI}.
@comment unistd.h
@comment POSIX.1g
@item _SC_PII_SOCKET
Inquire about the parameter corresponding to @code{_POSIX_PII_SOCKET}.
@comment unistd.h
@comment POSIX.1g
@item _SC_PII_INTERNET
Inquire about the parameter corresponding to @code{_POSIX_PII_INTERNET}.
@comment unistd.h
@comment POSIX.1g
@item _SC_PII_OSI
Inquire about the parameter corresponding to @code{_POSIX_PII_OSI}.
@comment unistd.h
@comment POSIX.1g
@item _SC_SELECT
Inquire about the parameter corresponding to @code{_POSIX_SELECT}.
@comment unistd.h
@comment POSIX.1g
@item _SC_UIO_MAXIOV
Inquire about the parameter corresponding to @code{_POSIX_UIO_MAXIOV}.
@comment unistd.h
@comment POSIX.1g
@item _SC_PII_INTERNET_STREAM
Inquire about the parameter corresponding to @code{_POSIX_PII_INTERNET_STREAM}.
@comment unistd.h
@comment POSIX.1g
@item _SC_PII_INTERNET_DGRAM
Inquire about the parameter corresponding to @code{_POSIX_PII_INTERNET_DGRAM}.
@comment unistd.h
@comment POSIX.1g
@item _SC_PII_OSI_COTS
Inquire about the parameter corresponding to @code{_POSIX_PII_OSI_COTS}.
@comment unistd.h
@comment POSIX.1g
@item _SC_PII_OSI_CLTS
Inquire about the parameter corresponding to @code{_POSIX_PII_OSI_CLTS}.
@comment unistd.h
@comment POSIX.1g
@item _SC_PII_OSI_M
Inquire about the parameter corresponding to @code{_POSIX_PII_OSI_M}.
@comment unistd.h
@comment POSIX.1g
@item _SC_T_IOV_MAX
Inquire the value of the value associated with the @code{T_IOV_MAX}
variable.
@comment unistd.h
@comment POSIX.1
@item _SC_THREADS
Inquire about the parameter corresponding to @code{_POSIX_THREADS}.
@comment unistd.h
@comment POSIX.1
@item _SC_THREAD_SAFE_FUNCTIONS
Inquire about the parameter corresponding to@*
@code{_POSIX_THREAD_SAFE_FUNCTIONS}.
@comment unistd.h
@comment POSIX.1
@item _SC_GETGR_R_SIZE_MAX
Inquire about the parameter corresponding to @code{_POSIX_GETGR_R_SIZE_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_GETPW_R_SIZE_MAX
Inquire about the parameter corresponding to @code{_POSIX_GETPW_R_SIZE_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_LOGIN_NAME_MAX
Inquire about the parameter corresponding to @code{_POSIX_LOGIN_NAME_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_TTY_NAME_MAX
Inquire about the parameter corresponding to @code{_POSIX_TTY_NAME_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_THREAD_DESTRUCTOR_ITERATIONS
Inquire about the parameter corresponding to
@code{_POSIX_THREAD_DESTRUCTOR_ITERATIONS}.
@comment unistd.h
@comment POSIX.1
@item _SC_THREAD_KEYS_MAX
Inquire about the parameter corresponding to @code{_POSIX_THREAD_KEYS_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_THREAD_STACK_MIN
Inquire about the parameter corresponding to @code{_POSIX_THREAD_STACK_MIN}.
@comment unistd.h
@comment POSIX.1
@item _SC_THREAD_THREADS_MAX
Inquire about the parameter corresponding to @code{_POSIX_THREAD_THREADS_MAX}.
@comment unistd.h
@comment POSIX.1
@item _SC_THREAD_ATTR_STACKADDR
Inquire about the parameter corresponding to@*a
@code{_POSIX_THREAD_ATTR_STACKADDR}.
@comment unistd.h
@comment POSIX.1
@item _SC_THREAD_ATTR_STACKSIZE
Inquire about the parameter corresponding to@*
@code{_POSIX_THREAD_ATTR_STACKSIZE}.
@comment unistd.h
@comment POSIX.1
@item _SC_THREAD_PRIORITY_SCHEDULING
Inquire about the parameter corresponding to
@code{_POSIX_THREAD_PRIORITY_SCHEDULING}.
@comment unistd.h
@comment POSIX.1
@item _SC_THREAD_PRIO_INHERIT
Inquire about the parameter corresponding to @code{_POSIX_THREAD_PRIO_INHERIT}.
@comment unistd.h
@comment POSIX.1
@item _SC_THREAD_PRIO_PROTECT
Inquire about the parameter corresponding to @code{_POSIX_THREAD_PRIO_PROTECT}.
@comment unistd.h
@comment POSIX.1
@item _SC_THREAD_PROCESS_SHARED
Inquire about the parameter corresponding to
@code{_POSIX_THREAD_PROCESS_SHARED}.
@comment unistd.h
@comment POSIX.2
@item _SC_2_C_DEV
Inquire about whether the system has the POSIX.2 C compiler command,
@code{c89}.
@comment unistd.h
@comment POSIX.2
@item _SC_2_FORT_DEV
Inquire about whether the system has the POSIX.2 Fortran compiler
command, @code{fort77}.
@comment unistd.h
@comment POSIX.2
@item _SC_2_FORT_RUN
Inquire about whether the system has the POSIX.2 @code{asa} command to
interpret Fortran carriage control.
@comment unistd.h
@comment POSIX.2
@item _SC_2_LOCALEDEF
Inquire about whether the system has the POSIX.2 @code{localedef}
command.
@comment unistd.h
@comment POSIX.2
@item _SC_2_SW_DEV
Inquire about whether the system has the POSIX.2 commands @code{ar},
@code{make}, and @code{strip}.
@comment unistd.h
@comment POSIX.2
@item _SC_BC_BASE_MAX
Inquire about the maximum value of @code{obase} in the @code{bc}
utility.
@comment unistd.h
@comment POSIX.2
@item _SC_BC_DIM_MAX
Inquire about the maximum size of an array in the @code{bc}
utility.
@comment unistd.h
@comment POSIX.2
@item _SC_BC_SCALE_MAX
Inquire about the maximum value of @code{scale} in the @code{bc}
utility.
@comment unistd.h
@comment POSIX.2
@item _SC_BC_STRING_MAX
Inquire about the maximum size of a string constant in the
@code{bc} utility.
@comment unistd.h
@comment POSIX.2
@item _SC_COLL_WEIGHTS_MAX
Inquire about the maximum number of weights that can necessarily
be used in defining the collating sequence for a locale.
@comment unistd.h
@comment POSIX.2
@item _SC_EXPR_NEST_MAX
Inquire about the maximum number of expressions nested within
parentheses when using the @code{expr} utility.
@comment unistd.h
@comment POSIX.2
@item _SC_LINE_MAX
Inquire about the maximum size of a text line that the POSIX.2 text
utilities can handle.
@comment unistd.h
@comment POSIX.2
@item _SC_EQUIV_CLASS_MAX
Inquire about the maximum number of weights that can be assigned to an
entry of the @code{LC_COLLATE} category @samp{order} keyword in a locale
definition. @Theglibc{} does not presently support locale
definitions.
@comment unistd.h
@comment POSIX.2
@item _SC_VERSION
Inquire about the version number of POSIX.1 that the library and kernel
support.
@comment unistd.h
@comment POSIX.2
@item _SC_2_VERSION
Inquire about the version number of POSIX.2 that the system utilities
support.
@comment unistd.h
@comment GNU
@item _SC_PAGESIZE
Inquire about the virtual memory page size of the machine.
@code{getpagesize} returns the same value (@pxref{Query Memory Parameters}).
@comment unistd.h
@comment GNU
@item _SC_NPROCESSORS_CONF
Inquire about the number of configured processors.
@comment unistd.h
@comment GNU
@item _SC_NPROCESSORS_ONLN
Inquire about the number of processors online.
@comment unistd.h
@comment GNU
@item _SC_PHYS_PAGES
Inquire about the number of physical pages in the system.
@comment unistd.h
@comment GNU
@item _SC_AVPHYS_PAGES
Inquire about the number of available physical pages in the system.
@comment unistd.h
@comment GNU
@item _SC_ATEXIT_MAX
Inquire about the number of functions which can be registered as termination
functions for @code{atexit}; @pxref{Cleanups on Exit}.
@comment unistd.h
@comment X/Open
@item _SC_XOPEN_VERSION
Inquire about the parameter corresponding to @code{_XOPEN_VERSION}.
@comment unistd.h
@comment X/Open
@item _SC_XOPEN_XCU_VERSION
Inquire about the parameter corresponding to @code{_XOPEN_XCU_VERSION}.
@comment unistd.h
@comment X/Open
@item _SC_XOPEN_UNIX
Inquire about the parameter corresponding to @code{_XOPEN_UNIX}.
@comment unistd.h
@comment X/Open
@item _SC_XOPEN_REALTIME
Inquire about the parameter corresponding to @code{_XOPEN_REALTIME}.
@comment unistd.h
@comment X/Open
@item _SC_XOPEN_REALTIME_THREADS
Inquire about the parameter corresponding to @code{_XOPEN_REALTIME_THREADS}.
@comment unistd.h
@comment X/Open
@item _SC_XOPEN_LEGACY
Inquire about the parameter corresponding to @code{_XOPEN_LEGACY}.
@comment unistd.h
@comment X/Open
@item _SC_XOPEN_CRYPT
Inquire about the parameter corresponding to @code{_XOPEN_CRYPT}.
@comment unistd.h
@comment X/Open
@item _SC_XOPEN_ENH_I18N
Inquire about the parameter corresponding to @code{_XOPEN_ENH_I18N}.
@comment unistd.h
@comment X/Open
@item _SC_XOPEN_SHM
Inquire about the parameter corresponding to @code{_XOPEN_SHM}.
@comment unistd.h
@comment X/Open
@item _SC_XOPEN_XPG2
Inquire about the parameter corresponding to @code{_XOPEN_XPG2}.
@comment unistd.h
@comment X/Open
@item _SC_XOPEN_XPG3
Inquire about the parameter corresponding to @code{_XOPEN_XPG3}.
@comment unistd.h
@comment X/Open
@item _SC_XOPEN_XPG4
Inquire about the parameter corresponding to @code{_XOPEN_XPG4}.
@comment unistd.h
@comment X/Open
@item _SC_CHAR_BIT
Inquire about the number of bits in a variable of type @code{char}.
@comment unistd.h
@comment X/Open
@item _SC_CHAR_MAX
Inquire about the maximum value which can be stored in a variable of type
@code{char}.
@comment unistd.h
@comment X/Open
@item _SC_CHAR_MIN
Inquire about the minimum value which can be stored in a variable of type
@code{char}.
@comment unistd.h
@comment X/Open
@item _SC_INT_MAX
Inquire about the maximum value which can be stored in a variable of type
@code{int}.
@comment unistd.h
@comment X/Open
@item _SC_INT_MIN
Inquire about the minimum value which can be stored in a variable of type
@code{int}.
@comment unistd.h
@comment X/Open
@item _SC_LONG_BIT
Inquire about the number of bits in a variable of type @code{long int}.
@comment unistd.h
@comment X/Open
@item _SC_WORD_BIT
Inquire about the number of bits in a variable of a register word.
@comment unistd.h
@comment X/Open
@item _SC_MB_LEN_MAX
Inquire the maximum length of a multi-byte representation of a wide
character value.
@comment unistd.h
@comment X/Open
@item _SC_NZERO
Inquire about the value used to internally represent the zero priority level for
the process execution.
@comment unistd.h
@comment X/Open
@item SC_SSIZE_MAX
Inquire about the maximum value which can be stored in a variable of type
@code{ssize_t}.
@comment unistd.h
@comment X/Open
@item _SC_SCHAR_MAX
Inquire about the maximum value which can be stored in a variable of type
@code{signed char}.
@comment unistd.h
@comment X/Open
@item _SC_SCHAR_MIN
Inquire about the minimum value which can be stored in a variable of type
@code{signed char}.
@comment unistd.h
@comment X/Open
@item _SC_SHRT_MAX
Inquire about the maximum value which can be stored in a variable of type
@code{short int}.
@comment unistd.h
@comment X/Open
@item _SC_SHRT_MIN
Inquire about the minimum value which can be stored in a variable of type
@code{short int}.
@comment unistd.h
@comment X/Open
@item _SC_UCHAR_MAX
Inquire about the maximum value which can be stored in a variable of type
@code{unsigned char}.
@comment unistd.h
@comment X/Open
@item _SC_UINT_MAX
Inquire about the maximum value which can be stored in a variable of type
@code{unsigned int}.
@comment unistd.h
@comment X/Open
@item _SC_ULONG_MAX
Inquire about the maximum value which can be stored in a variable of type
@code{unsigned long int}.
@comment unistd.h
@comment X/Open
@item _SC_USHRT_MAX
Inquire about the maximum value which can be stored in a variable of type
@code{unsigned short int}.
@comment unistd.h
@comment X/Open
@item _SC_NL_ARGMAX
Inquire about the parameter corresponding to @code{NL_ARGMAX}.
@comment unistd.h
@comment X/Open
@item _SC_NL_LANGMAX
Inquire about the parameter corresponding to @code{NL_LANGMAX}.
@comment unistd.h
@comment X/Open
@item _SC_NL_MSGMAX
Inquire about the parameter corresponding to @code{NL_MSGMAX}.
@comment unistd.h
@comment X/Open
@item _SC_NL_NMAX
Inquire about the parameter corresponding to @code{NL_NMAX}.
@comment unistd.h
@comment X/Open
@item _SC_NL_SETMAX
Inquire about the parameter corresponding to @code{NL_SETMAX}.
@comment unistd.h
@comment X/Open
@item _SC_NL_TEXTMAX
Inquire about the parameter corresponding to @code{NL_TEXTMAX}.
@end vtable
@node Examples of Sysconf
@subsection Examples of @code{sysconf}
We recommend that you first test for a macro definition for the
parameter you are interested in, and call @code{sysconf} only if the
macro is not defined. For example, here is how to test whether job
control is supported:
@smallexample
@group
int
have_job_control (void)
@{
#ifdef _POSIX_JOB_CONTROL
return 1;
#else
int value = sysconf (_SC_JOB_CONTROL);
if (value < 0)
/* @r{If the system is that badly wedged,}
@r{there's no use trying to go on.} */
fatal (strerror (errno));
return value;
#endif
@}
@end group
@end smallexample