]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
Italics for header file references
authorMichael Kerrisk <mtk.manpages@gmail.com>
Wed, 20 Jun 2007 21:53:34 +0000 (21:53 +0000)
committerMichael Kerrisk <mtk.manpages@gmail.com>
Wed, 20 Jun 2007 21:53:34 +0000 (21:53 +0000)
30 files changed:
man2/ioctl_list.2
man2/mlock.2
man2/mmap.2
man2/modify_ldt.2
man2/mount.2
man2/msgctl.2
man2/msync.2
man2/poll.2
man2/ptrace.2
man2/sched_get_priority_max.2
man2/sched_rr_get_interval.2
man2/sched_setparam.2
man2/sched_setscheduler.2
man2/sched_yield.2
man2/semctl.2
man2/shmctl.2
man2/signal.2
man2/statfs.2
man3/atoi.3
man3/clock_getres.3
man3/insque.3
man3/nl_langinfo.3
man3/posix_memalign.3
man3/realpath.3
man3/sigsetops.3
man3/stdin.3
man4/fd.4
man5/resolv.conf.5
man7/bootparam.7
man7/ip.7

index 4e184a6a4dd6a8f70c954d210992cca5377b4e8f..5a5e520c8fdad93a20c7179ce5a8712f5c9e7412 100644 (file)
@@ -69,7 +69,7 @@ followed by an 8-bit type (collecting the ioctls in groups
 for a common purpose or a common driver), and an 8-bit
 serial number.
 .LP
-The macros describing this structure live in <asm/ioctl.h>
+The macros describing this structure live in \fI<asm/ioctl.h>\fP
 and are _IO(type,nr) and {_IOR,_IOW,_IOWR}(type,nr,size).
 They use sizeof(size) so that size is a
 misnomer here: this third parameter is a data type.
index 43bc58b5457b9768931dbcf277e60de9086a1e03..887878fa18da31e2f021bbaca3a9f19b1902fbd0 100644 (file)
@@ -199,10 +199,10 @@ and
 .BR munlock ()
 are available,
 .B _POSIX_MEMLOCK_RANGE
-is defined in <unistd.h> and the number of bytes in a page
+is defined in \fI<unistd.h>\fP and the number of bytes in a page
 can be determined from the constant
 .B PAGESIZE
-(if defined) in <limits.h> or by calling
+(if defined) in \fI<limits.h>\fP or by calling
 .IR sysconf(_SC_PAGESIZE) .
 
 On POSIX systems on which
@@ -211,7 +211,7 @@ and
 .BR munlockall ()
 are available,
 .B _POSIX_MEMLOCK
-is defined in <unistd.h> to a value greater than 0. (See also
+is defined in \fI<unistd.h>\fP to a value greater than 0. (See also
 .BR sysconf (3).)
 .\" POSIX.1-2001: It shall be defined to -1 or 0 or 200112L.
 .\" -1: unavailable, 0: ask using sysconf().
index 99825498af20c8d324f50054873aba7566090f1e..aa7de5ad4da5e4b68e3017ea7f06abd8e4686cb9 100644 (file)
@@ -432,7 +432,7 @@ and
 .BR munmap ()
 are available,
 .B _POSIX_MAPPED_FILES
-is defined in <unistd.h> to a value greater than 0. (See also
+is defined in \fI<unistd.h>\fP to a value greater than 0. (See also
 .BR sysconf (3).)
 .\" POSIX.1-2001: It shall be defined to -1 or 0 or 200112L.
 .\" -1: unavailable, 0: ask using sysconf().
index 103787e07a1451ba5c595ba722fa1e44339fb85c..9fd24949dd7759750d1201dfb5e3d0d59feb7506 100644 (file)
@@ -67,7 +67,7 @@ must equal the size of this structure.
 
 The
 .I user_desc
-structure is defined in <asm/ldt.h> as:
+structure is defined in \fI<asm/ldt.h>\fP as:
 .in +0.25i
 .nf
 
index 8f853ff33da132d015c84a88582f5dbfd035fdf4..c9d0e1f5820781eb6f475c5328cb76175c360d42 100644 (file)
@@ -86,8 +86,8 @@ The
 argument may have the magic number 0xC0ED (\fBMS_MGC_VAL\fP)
 in the top 16 bits (this was required in kernel versions prior to 2.4, but
 is no longer required and ignored if specified),
-and various mount flags (as defined in <linux/fs.h> for libc4 and libc5
-and in <sys/mount.h> for glibc2) in the low order 16 bits:
+and various mount flags (as defined in \fI<linux/fs.h>\fP for libc4 and libc5
+and in \fI<sys/mount.h>\fP for glibc2) in the low order 16 bits:
 .\" FIXME 2.6.15 added flags for "shared sub-tree" functionality:
 .\" MS_UNBINDABLE, MS_PRIVATE, MS_SHARED, MS_SLAVE
 .\" These need to be documented on this page.
@@ -400,7 +400,7 @@ leaving only \fIumount(dir)\fP (since now devices can be mounted
 in more than one place, so specifying the device does not suffice).
 .LP
 The original MS_SYNC flag was renamed MS_SYNCHRONOUS in 1.1.69
-when a different MS_SYNC was added to <mman.h>.
+when a different MS_SYNC was added to \fI<mman.h>\fP.
 .LP
 Before Linux 2.4 an attempt to execute a set-user-ID or set-group-ID program
 on a filesystem mounted with
index f759d0cd00896cf7991232346063aab058981986..d04aaf54a6ae58376e935347e892092d901329bd 100644 (file)
@@ -57,7 +57,7 @@ on the message queue with identifier
 .PP
 The
 .I msqid_ds
-data structure is defined in <sys/msg.h> as follows:
+data structure is defined in \fI<sys/msg.h>\fP as follows:
 .nf
 .in +4n
 
@@ -80,7 +80,7 @@ struct msqid_ds {
 .PP
 The
 .I ipc_perm
-structure is defined in <sys/ipc.h> as follows
+structure is defined in \fI<sys/ipc.h>\fP as follows
 (the highlighted fields are settable using
 .BR IPC_SET ):
 .PP
index fa3c0d883ee299ff7ac8d609c4e2c1f71d4bf7f1..f93fb1d68e1e6f5a97030040cc31850aaeb05e63 100644 (file)
@@ -101,7 +101,7 @@ is available, both
 .B _POSIX_MAPPED_FILES
 and
 .B _POSIX_SYNCHRONIZED_IO
-are defined in <unistd.h> to a value greater than 0.
+are defined in \fI<unistd.h>\fP to a value greater than 0.
 (See also
 .BR sysconf (3).)
 .\" POSIX.1-2001: It shall be defined to -1 or 0 or 200112L.
index 4d3934dc8603768461cce4e64983991ecb13a226..e41a837c218a64d282e014af55756763867dbcdf 100644 (file)
@@ -114,7 +114,7 @@ The bits that may be set/returned in
 .I events
 and
 .I revents
-are defined in <poll.h>:
+are defined in \fI<poll.h>\fP:
 .RS
 .TP
 .B POLLIN
index ea3c57e2efea841f155548cd130d489a88847e39..b00b15f4c25277657286ca84caa505de05f289c7 100644 (file)
@@ -121,7 +121,7 @@ Reads a word at offset
 in the child's
 .B USER
 area, which holds the registers and other information about the process
-(see <linux/user.h> and <sys/user.h>).
+(see \fI<linux/user.h>\fP and <sys/user.h>).
 The word is returned as the result of the
 .BR ptrace ()
 call.
@@ -153,7 +153,7 @@ area are disallowed.
 PTRACE_GETREGS, PTRACE_GETFPREGS
 Copies the child's general purpose or floating-point registers,
 respectively, to location \fIdata\fP in the parent.
-See <linux/user.h> for information on
+See \fI<linux/user.h>\fP for information on
 the format of this data.  (\fIaddr\fP is ignored.)
 .TP
 PTRACE_GETSIGINFO (since Linux 2.3.99-pre6)
index bed583e36f362b593e80ded79c7aa109a0a2b38f..72bf6fcc7d69ab15bb9a1949a723799e7386d0fa 100644 (file)
@@ -83,7 +83,7 @@ and
 .BR sched_get_priority_min ()
 are available define
 .I _POSIX_PRIORITY_SCHEDULING
-in <unistd.h>.
+in \fI<unistd.h>\fP.
 .SH "RETURN VALUE"
 On success,
 .BR sched_get_priority_max ()
index aee0d082a9ae0d9a4b74399eb526cbc5bb01593d..ca404e370a06e066eccdcc02e552489b1459d903 100644 (file)
@@ -64,7 +64,7 @@ POSIX systems on which
 .BR sched_rr_get_interval ()
 is available define
 .I _POSIX_PRIORITY_SCHEDULING
-in <unistd.h>.
+in \fI<unistd.h>\fP.
 .SH "RETURN VALUE"
 On success,
 .BR sched_rr_get_interval ()
index c8d5a4ce61b36eccd0096fc7f96c1ef95084f546..50ecd530dbd5f937acafabca4fab6804e93cbb3d 100644 (file)
@@ -84,7 +84,7 @@ and
 .BR sched_getparam ()
 are available define
 .I _POSIX_PRIORITY_SCHEDULING
-in <unistd.h>.
+in \fI<unistd.h>\fP.
 .SH "RETURN VALUE"
 On success,
 .BR sched_setparam ()
index 3452ede53587305fd75fbd389d1e5613720895ab..2f8f2899a8939ba703c601257238893fd43e4def 100644 (file)
@@ -293,7 +293,7 @@ and
 .BR sched_getscheduler ()
 are available define
 .I _POSIX_PRIORITY_SCHEDULING
-in <unistd.h>.
+in \fI<unistd.h>\fP.
 .SH "RETURN VALUE"
 On success,
 .BR sched_setscheduler ()
index 130dba49a681472255d3629534c4f6002dc58d67..79c24289153a817141398350485f6203ceca197c 100644 (file)
@@ -49,7 +49,7 @@ POSIX systems on which
 .BR sched_yield ()
 is available define
 .I _POSIX_PRIORITY_SCHEDULING
-in <unistd.h>.
+in \fI<unistd.h>\fP.
 .SH "RETURN VALUE"
 On success,
 .BR sched_yield ()
index 42ec7244049d4c0f4fad190edff3a6722c797bd1..1bf636e133227285a014b998f7ed9d19b55cac15 100644 (file)
@@ -78,7 +78,7 @@ union semun {
 .PP
 The
 .I semid_ds
-data structure is defined in <sys/sem.h> as follows:
+data structure is defined in \fI<sys/sem.h>\fP as follows:
 .nf
 .in +4n
 
@@ -93,7 +93,7 @@ struct semid_ds {
 .PP
 The
 .I ipc_perm
-structure is defined in <sys/ipc.h> as follows
+structure is defined in \fI<sys/ipc.h>\fP as follows
 (the highlighted fields are settable using
 .BR IPC_SET ):
 .PP
@@ -479,12 +479,12 @@ a recompilation under glibc-2.1.91 or later should suffice.
 .PP
 In some earlier versions of glibc, the
 .I semun
-union was defined in <sys/sem.h>, but POSIX.1-2001 requires
+union was defined in \fI<sys/sem.h>\fP, but POSIX.1-2001 requires
 that the caller define this union.
 On versions of glibc where this union is \fInot\fP defined,
 the macro
 .B _SEM_SEMUN_UNDEFINED
-is defined in <sys/sem.h>.
+is defined in \fI<sys/sem.h>\fP.
 .PP
 The following system limit on semaphore sets affects a
 .BR semctl ()
index f2aebe06885e8ad2011f883a04b97e80d72be0cc..d5fd2b5253e5a44e04ab87d163d35aec5a654003 100644 (file)
@@ -60,7 +60,7 @@ on the shared memory segment whose identifier is given in
 The
 .I buf
 argument is a pointer to a \fIshmid_ds\fP structure,
-defined in <sys/shm.h> as follows:
+defined in \fI<sys/shm.h>\fP as follows:
 .PP
 .in +4n
 .nf
@@ -80,7 +80,7 @@ struct shmid_ds {
 .PP
 The
 .I ipc_perm
-structure is defined in <sys/ipc.h> as follows
+structure is defined in \fI<sys/ipc.h>\fP as follows
 (the highlighted fields are settable using
 .BR IPC_SET ):
 .PP
index 3b18415429ce10fd7641fabaea2fee16acae55b0..7a1a82e9f978321eff98907d6e24ed89ca72f7ac 100644 (file)
@@ -157,9 +157,9 @@ new instances of this signal from occurring during a call of the handler.
 The glibc2 library follows the BSD behavior.
 
 If one on a libc5 system includes
-.B "<bsd/signal.h>"
+.I <bsd/signal.h>
 instead of
-.B "<signal.h>"
+.I <signal.h>
 then
 .BR signal ()
 is redefined as
index 77d2675d7a98b26f96ab7377bbb60e4f6e3ce43b..da9e45052cab587093c098c74fa7179eab5d68dc 100644 (file)
@@ -190,8 +190,8 @@ and
 .BR fstatfs64 ()
 to support this library call.
 
-Some systems only have <sys/vfs.h>, other systems also have
-<sys/statfs.h>, where the former includes the latter.
+Some systems only have \fI<sys/vfs.h>\fP, other systems also have
+\fI<sys/statfs.h>\fP, where the former includes the latter.
 So it seems
 including the former is the best choice.
 
index 18592eaa68d7e10b335bcb939ed6670220564b7a..5ad6bffdf79b18468d074443b058fee450b20a2f 100644 (file)
@@ -87,7 +87,7 @@ The non-standard
 .BR atoq ()
 function is not present in libc 4.6.27
 or glibc 2, but is present in libc5 and libc 4.7 (though only as an
-inline function in \fB<stdlib.h>\fP until libc 5.4.44).
+inline function in \fI<stdlib.h>\fP until libc 5.4.44).
 The
 .BR atoll ()
 function is present in glibc 2 since version 2.0.2, but
index 227eb006a65a02cf3152effdf0ce02ccf0aae88a..bd144474778ff90662f63e87189ed509d9907de2 100644 (file)
@@ -143,7 +143,7 @@ SUSv2, POSIX.1-2001.
 .SH AVAILABILITY
 On POSIX systems on which these functions are available, the symbol
 .B _POSIX_TIMERS
-is defined in <unistd.h> to a value greater than 0.
+is defined in \fI<unistd.h>\fP to a value greater than 0.
 The symbols
 .BR _POSIX_MONOTONIC_CLOCK ,
 .BR _POSIX_CPUTIME ,
index e0bf00e8fbeeea5c3086f16541e4df6966bb4a2c..3bfe01ba65d0a687e14d82884c679a2e2d07a5a5 100644 (file)
@@ -73,11 +73,11 @@ struct qelem {
 .RE
 
 This is still what you will get if _GNU_SOURCE is defined before
-including <search.h>.
+including \fI<search.h>\fP.
 
 The location of the prototypes for these functions differs among several
 versions of UNIX.
 The above is the POSIX version.
-Some systems place them in <string.h>.
+Some systems place them in \fI<string.h>\fP.
 Linux libc4,5 placed them
-in <stdlib.h>.
+in \fI<stdlib.h>\fP.
index 8890467013b7d6b27dc68b82f6a703612f60f11e..44d5c7a8a093d81331da82624d10693f3a060932 100644 (file)
@@ -31,7 +31,7 @@ Individual and additional elements of the locale categories can
 be queried.
 .PP
 Examples for the locale elements that can be specified in \fIitem\fP
-using the constants defined in <langinfo.h> are:
+using the constants defined in \fI<langinfo.h>\fP are:
 .TP
 .BR CODESET \ (LC_CTYPE)
 Return a string with the name of the character encoding used in the
index e091dfc28296c421def3a6379bc464bd65120a84..1ee108221173f40ed16acb38197402d85f7d680b 100644 (file)
@@ -116,18 +116,18 @@ comes from POSIX.1d.
 .SS Headers
 Everybody agrees that
 .BR posix_memalign ()
-is declared in <stdlib.h>.
+is declared in \fI<stdlib.h>\fP.
 In order to declare it, glibc needs
 _GNU_SOURCE defined, or _XOPEN_SOURCE defined to a value not less than 600.
 
 On some systems
 .BR memalign ()
-is declared in <stdlib.h> instead of <malloc.h>.
+is declared in \fI<stdlib.h>\fP instead of \fI<malloc.h>\fP.
 
 According to SUSv2,
 .BR valloc ()
-is declared in <stdlib.h>.
-Libc4,5 and glibc declare it in <malloc.h> and perhaps also in <stdlib.h>
+is declared in \fI<stdlib.h>\fP.
+Libc4,5 and glibc declare it in \fI<malloc.h>\fP and perhaps also in <stdlib.h>
 (namely, if _GNU_SOURCE is defined, or _BSD_SOURCE is defined, or,
 for glibc, if _XOPEN_SOURCE_EXTENDED is defined, or, equivalently,
 _XOPEN_SOURCE is defined to a value not less than 500).
index 3c6ff611e04afc6eaf4c01591c5d32636a67b254..1f3faa4c65cabffb31a6e48198342f73567a5a65 100644 (file)
@@ -100,9 +100,9 @@ On Linux this function appeared in libc 4.5.21.
 4.4BSD, POSIX.1-2001.
 
 In 4.4BSD and Solaris the limit on the pathname length is MAXPATHLEN
-(found in <sys/param.h>).
+(found in \fI<sys/param.h>\fP).
 SUSv2 prescribes PATH_MAX and
-NAME_MAX, as found in <limits.h> or provided by the
+NAME_MAX, as found in \fI<limits.h>\fP or provided by the
 .BR pathconf (3)
 function.
 A typical source fragment would be
@@ -127,8 +127,8 @@ Solaris may return a relative pathname when the
 argument is relative.
 The prototype of
 .BR realpath ()
-is given in <unistd.h> in libc4 and libc5,
-but in <stdlib.h> everywhere else.
+is given in \fI<unistd.h>\fP in libc4 and libc5,
+but in \fI<stdlib.h>\fP everywhere else.
 .SH NOTES
 The glibc implementation of
 .BR realpath ()
index d75e2bd4e76d660c488928e22fdb60931c3dd108..1ef102ed94b48e48f063751c18272084fabc191f 100644 (file)
@@ -93,7 +93,7 @@ is not a valid signal.
 POSIX.1-2001.
 .SH NOTES
 .SS Glibc Notes
-If the _GNU_SOURCE feature test macro is defined, then <signal.h>
+If the _GNU_SOURCE feature test macro is defined, then \fI<signal.h>\fP
 exposes three other functions for manipulating signal
 sets.
 .TP
index 377eff7a809bd6b117d265a053c5ad6631cc24fc..f6766e2fb57d1ba6d8361a26fb0ee315820ad65c 100644 (file)
@@ -61,7 +61,7 @@ and
 are 0, 1, and 2, respectively.
 The preprocessor symbols STDIN_FILENO,
 STDOUT_FILENO, and STDERR_FILENO are defined with these values in
-<unistd.h>.
+\fI<unistd.h>\fP.
 (Applying
 .Xr freopen 3
 to one of these streams can change the file descriptor number
index 932b3a09dd4708813b0dcc066f1208165bf5b6f5..83e1af82ca4c6b51aeed2e165d0ac3ea04a3ed28 100644 (file)
--- a/man4/fd.4
+++ b/man4/fd.4
@@ -185,8 +185,8 @@ resets the floppy controller under certain conditions.
 .IP \fBFDRAWCMD\fP
 sends a raw command to the floppy controller.
 .PP
-For more precise information, consult also the <linux/fd.h> and
-<linux/fdreg.h> include files, as well as the manual page for
+For more precise information, consult also the \fI<linux/fd.h>\fP and
+\fI<linux/fdreg.h>\fP include files, as well as the manual page for
 floppycontrol.
 .SH FILES
 /dev/fd*
index 16adc5ccb0d68e5c5e0a85a1e68c193aaaff362e..5349da1b6406605eb51d1b865448afe1da54bfa8 100644 (file)
@@ -44,7 +44,7 @@ The different configuration options are:
 \fBnameserver\fP Name server IP address
 Internet address (in dot notation) of a name server
 that the resolver should query.
-Up to MAXNS (currently 3, see <resolv.h>) name servers may be listed,
+Up to MAXNS (currently 3, see \fI<resolv.h>\fP) name servers may be listed,
 one per keyword.
 If there are multiple servers,
 the resolver library queries them in the order listed.
@@ -146,13 +146,13 @@ sets the amount of time the resolver will wait for a
 response from a remote name server before retrying the
 query via a different name server.
 Measured in seconds,
-the default is RES_TIMEOUT (currently 5, see <resolv.h>).
+the default is RES_TIMEOUT (currently 5, see \fI<resolv.h>\fP).
 .TP
 .BI attempts: n
 sets the number of times the resolver will send a
 query to its name servers before giving up and returning
 an error to the calling application.
-The default is RES_DFLRETRY (currently 2, see <resolv.h>).
+The default is RES_DFLRETRY (currently 2, see \fI<resolv.h>\fP).
 .TP
 .B rotate
 sets RES_ROTATE in
index aabfc19089a7b8002b69cc9f3f0a91651bd15222..6ebf3ab64c6d1e78a6caca1020cae1a93b219910 100644 (file)
@@ -305,7 +305,7 @@ may be logged to disk.
 Messages with a priority above
 .I console_loglevel
 are also printed on the console.
-(For these levels, see <linux/kernel.h>.)
+(For these levels, see \fI<linux/kernel.h>\fP.)
 By default this variable is set to log anything more important than
 debug messages.
 This boot argument will cause the kernel to also
index 9e84faa22b2219d9bb0f3e175832880b8fd4bb48..19537c844cfcb0be8d6eea51ff74383b51040da5 100644 (file)
--- a/man7/ip.7
+++ b/man7/ip.7
@@ -368,7 +368,7 @@ and
 .I IP_TOS
 are ignored.
 .TP
-.BR IP_RECVERR " (defined in <linux/errqueue.h>)"
+.BR IP_RECVERR " (defined in \fI<linux/errqueue.h>\fP)"
 Enable extended reliable error message passing.
 When enabled on a datagram socket all
 generated errors will be queued in a per-socket error queue.