diff options
| author | Michael Kerrisk <mtk.manpages@gmail.com> | 2007-09-20 16:26:31 +0000 |
|---|---|---|
| committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2007-09-20 16:26:31 +0000 |
| commit | 0daa9e92d0cc449d25d4fd200759177024baae84 (patch) | |
| tree | ab554843b62ec3ad24acbdfbc8535e787c88d924 /man7 | |
| parent | c11b1abf2e2241d8efe19feb04c2a7e1e06c19b0 (diff) | |
| download | man-pages-0daa9e92d0cc449d25d4fd200759177024baae84.tar.gz | |
Fix redundant formatting macros
Diffstat (limited to 'man7')
| -rw-r--r-- | man7/bootparam.7 | 4 | ||||
| -rw-r--r-- | man7/capabilities.7 | 4 | ||||
| -rw-r--r-- | man7/credentials.7 | 4 | ||||
| -rw-r--r-- | man7/epoll.7 | 2 | ||||
| -rw-r--r-- | man7/feature_test_macros.7 | 34 | ||||
| -rw-r--r-- | man7/inotify.7 | 8 | ||||
| -rw-r--r-- | man7/ip.7 | 2 | ||||
| -rw-r--r-- | man7/man-pages.7 | 4 | ||||
| -rw-r--r-- | man7/man.7 | 4 | ||||
| -rw-r--r-- | man7/mq_overview.7 | 4 | ||||
| -rw-r--r-- | man7/netdevice.7 | 2 | ||||
| -rw-r--r-- | man7/path_resolution.7 | 2 | ||||
| -rw-r--r-- | man7/posixoptions.7 | 2 | ||||
| -rw-r--r-- | man7/rtnetlink.7 | 2 | ||||
| -rw-r--r-- | man7/socket.7 | 12 | ||||
| -rw-r--r-- | man7/spufs.7 | 8 | ||||
| -rw-r--r-- | man7/standards.7 | 6 | ||||
| -rw-r--r-- | man7/svipc.7 | 2 | ||||
| -rw-r--r-- | man7/tcp.7 | 18 | ||||
| -rw-r--r-- | man7/time.7 | 2 |
20 files changed, 63 insertions, 63 deletions
diff --git a/man7/bootparam.7 b/man7/bootparam.7 index 03391fd0cc..fced96f2fe 100644 --- a/man7/bootparam.7 +++ b/man7/bootparam.7 @@ -126,7 +126,7 @@ then then .IR /bin/init , then -.IR /bin/sh +.I /bin/sh and panic if all of this fails. .TP .B "`nfsaddrs=...'" @@ -591,7 +591,7 @@ level of the debugging messages to any of 16 levels of verbosity. .IP For an extensive discussion of the BusLogic command line parameters, see -.IR /usr/src/linux/drivers/scsi/BusLogic.c +.I /usr/src/linux/drivers/scsi/BusLogic.c (lines 3149-3270 in the kernel version I am looking at). The text below is a very much abbreviated extract. diff --git a/man7/capabilities.7 b/man7/capabilities.7 index a5834bc4c1..b45c8910a3 100644 --- a/man7/capabilities.7 +++ b/man7/capabilities.7 @@ -216,7 +216,7 @@ without this capability these system calls will fail with the error .B ENFILE if this limit is encountered); employ -.BR CLONE_NEWNS +.B CLONE_NEWNS flag with .BR clone (2) and @@ -304,7 +304,7 @@ resource limit to be overridden; .I msg_qbytes limit for a message queue to be raised above the limit in -.IR /proc/sys/kernel/msgmnb +.I /proc/sys/kernel/msgmnb (see .BR msgop (2) and diff --git a/man7/credentials.7 b/man7/credentials.7 index 38aefb40e1..48bd20d5b5 100644 --- a/man7/credentials.7 +++ b/man7/credentials.7 @@ -30,7 +30,7 @@ that is assigned when the process is created using A process can obtain its PID using .BR getpid (2). A PID is represented using the type -.IR pid_t +.I pid_t (defined in .IR <sys/types.h> ). @@ -112,7 +112,7 @@ Each process has various associated user and groups IDs. These IDs are integers, respectively represented using the types .I uid_t and -.IR gid_t +.I gid_t (defined in .IR <sys/types.h> ). diff --git a/man7/epoll.7 b/man7/epoll.7 index 5bb767e363..59176baf1a 100644 --- a/man7/epoll.7 +++ b/man7/epoll.7 @@ -99,7 +99,7 @@ the input buffer. In the above example, an event on .I rfd will be generated because of the write done in -.BR 2 +.B 2 and the event is consumed in .BR 3 . Since the read operation done in diff --git a/man7/feature_test_macros.7 b/man7/feature_test_macros.7 index 85a42f7fed..1dc3ff639f 100644 --- a/man7/feature_test_macros.7 +++ b/man7/feature_test_macros.7 @@ -179,7 +179,7 @@ plus the XSI extension) and C99 definitions. .TP .B _XOPEN_SOURCE_EXTENDED If this macro is defined, and -.BR _XOPEN_SOURCE +.B _XOPEN_SOURCE is defined, then expose definitions corresponding to the XPG4v2 (SUSv1) UNIX extensions (UNIX 95). This macro is also implicitly defined if @@ -211,7 +211,7 @@ versus .BR lseek (), etc.). New programs should not employ this interface; instead -.IR _FILE_OFFSET_BITS=64 +.I _FILE_OFFSET_BITS=64 should be employed. .TP .B _FILE_OFFSET_BITS @@ -237,7 +237,7 @@ some situations where standards conflict, unless one or more of .BR _XOPEN_SOURCE , .BR _XOPEN_SOURCE_EXTENDED , or -.BR _GNU_SOURCE +.B _GNU_SOURCE is defined, in which case BSD definitions are disfavored. .TP .B _SVID_SOURCE @@ -261,11 +261,11 @@ Defining this macro (with any value) is equivalent to defining .BR _ISOC99_SOURCE , .BR _XOPEN_SOURCE_EXTENDED , .BR _POSIX_SOURCE , -.BR _POSIX_C_SOURCE +.B _POSIX_C_SOURCE with the value 200112L (199506L in glibc versions before 2.5), .\" 199309L in glibc versions before 2.1 and -.BR _XOPEN_SOURCE +.B _XOPEN_SOURCE with the value 600 (500 in glibc versions before 2.2). In addition, various GNU-specific extensions are also exposed. Where standards conflict, BSD definitions are disfavored. @@ -347,22 +347,22 @@ If any of .BR _XOPEN_SOURCE_EXTENDED , .BR _BSD_SOURCE , or -.BR _SVID_SOURCE +.B _SVID_SOURCE is explicitly defined, then .BR _BSD_SOURCE , and -.BR _SVID_SOURCE +.B _SVID_SOURCE are not defined by default. If -.BR _POSIX_SOURCE +.B _POSIX_SOURCE and -.BR _POSIX_C_SOURCE +.B _POSIX_C_SOURCE are not explicitly defined, and either -.BR __STRICT_ANSI__ +.B __STRICT_ANSI__ is not defined or -.BR _XOPEN_SOURCE +.B _XOPEN_SOURCE is defined with a value of 500 or more, then .RS 6 .IP * 3 @@ -375,18 +375,18 @@ is defined with one of the following values: .IP \(bu 3 2, if -.BR XOPEN_SOURCE +.B XOPEN_SOURCE is defined with a value less than 500; .IP \(bu 199506L, if -.BR XOPEN_SOURCE +.B XOPEN_SOURCE is defined with a value greater than or equal to 500 and less than 600; or .IP \(bu 200112L (199506L in glibc versions before 2.4), if -.BR XOPEN_SOURCE +.B XOPEN_SOURCE is undefined, or is defined with a value greater than or equal to 600. .RE @@ -399,10 +399,10 @@ POSIX.1 specifies .BR _POSIX_SOURCE , and .BR _XOPEN_SOURCE . -.BR _XOPEN_SOURCE_EXTENDED +.B _XOPEN_SOURCE_EXTENDED was specified by XPG4v2 (aka SUSv1). -.BR _FILE_OFFSET_BITS +.B _FILE_OFFSET_BITS is not specified by any standard, but is employed on some other implementations. @@ -413,7 +413,7 @@ but is employed on some other implementations. .BR _FORTIFY_SOURCE , .BR _REENTRANT , and -.BR _THREAD_SAFE +.B _THREAD_SAFE are Linux (glibc) specific. .SH NOTES .I <features.h> diff --git a/man7/inotify.7 b/man7/inotify.7 index 20a8ea86a2..dd9e881510 100644 --- a/man7/inotify.7 +++ b/man7/inotify.7 @@ -198,7 +198,7 @@ Two additional convenience macros are which equates to IN_MOVED_FROM|IN_MOVED_TO, and -.BR IN_CLOSE +.B IN_CLOSE which equates to IN_CLOSE_WRITE|IN_CLOSE_NOWRITE. .PP @@ -243,7 +243,7 @@ IN_UNMOUNT File system containing watched object was unmounted The following interfaces can be used to limit the amount of kernel memory consumed by inotify: .TP -.IR /proc/sys/fs/inotify/max_queued_events +.I /proc/sys/fs/inotify/max_queued_events The value in this file is used when an application calls .BR inotify_init (2) to set an upper limit on the number of events that can be @@ -252,11 +252,11 @@ Events in excess of this limit are dropped, but an .B IN_Q_OVERFLOW event is always generated. .TP -.IR /proc/sys/fs/inotify/max_user_instances +.I /proc/sys/fs/inotify/max_user_instances This specifies an upper limit on the number of inotify instances that can be created per real user ID. .TP -.IR /proc/sys/fs/inotify/max_user_watches +.I /proc/sys/fs/inotify/max_user_watches This specifies a limit on the number of watches that can be associated with each inotify instance. .SH "VERSIONS" @@ -761,7 +761,7 @@ Enable IP forwarding with a boolean flag. IP forwarding can be also set on a per interface basis. .\" .TP -.BR ip_local_port_range +.B ip_local_port_range Contains two integers that define the default local port range allocated to sockets. Allocation starts with the first number and ends with the second number. diff --git a/man7/man-pages.7 b/man7/man-pages.7 index 6e4dcfb49a..4eb599dda4 100644 --- a/man7/man-pages.7 +++ b/man7/man-pages.7 @@ -102,7 +102,7 @@ The first command in a man page should be a \fBTH\fP command: .RS .sp .B \&.TH -.IR "title section date source manual" +.I "title section date source manual" .sp .RE where: @@ -469,7 +469,7 @@ and .BR pipe (2). .SH EXAMPLE For canonical examples of how man pages in the -.IR man-pages +.I man-pages package should look, see .BR pipe (2) and diff --git a/man7/man.7 b/man7/man.7 index de13dae989..b2bfc23a09 100644 --- a/man7/man.7 +++ b/man7/man.7 @@ -79,7 +79,7 @@ that is, lines that start with \fB.\\"\fP) should be .RS .sp .B \&.TH -.IR "title section date source manual" +.I "title section date source manual" .sp .RE For details of the arguments that should be supplied to the \fBTH\fP @@ -237,7 +237,7 @@ If the tag is provided, it is hung at the left margin before the following indented paragraph (this is just like -.BR \&.TP +.B \&.TP except the tag is included with the command instead of being on the following line). If the tag is too long, the text after the tag will be moved down to the diff --git a/man7/mq_overview.7 b/man7/mq_overview.7 index c6b97fcff3..386f99dcd9 100644 --- a/man7/mq_overview.7 +++ b/man7/mq_overview.7 @@ -60,7 +60,7 @@ of the arrival of a message on a previously empty queue using .BR mq_notify (3). A message queue descriptor is a reference to an -.IR "open message queue description" +.I "open message queue description" (cf. .BR open (2)). After a @@ -172,7 +172,7 @@ The default value for is 256; it can be changed to any value in the range 0 to INT_MAX. .SS Resource limit The -.BR RLIMIT_MSGQUEUE +.B RLIMIT_MSGQUEUE resource limit, which places a limit on the amount of space that can be consumed by all of the message queues belonging to a process's real user ID, is described in diff --git a/man7/netdevice.7 b/man7/netdevice.7 index 4b6f52df4c..de7a721e28 100644 --- a/man7/netdevice.7 +++ b/man7/netdevice.7 @@ -180,7 +180,7 @@ Setting the transmit queue length is a privileged operation. .TP .B SIOCSIFNAME Changes the name of the interface specified in -.IR ifr_name +.I ifr_name to .IR ifr_newname . This is a privileged operation. diff --git a/man7/path_resolution.7 b/man7/path_resolution.7 index 8a868ea02d..803f432465 100644 --- a/man7/path_resolution.7 +++ b/man7/path_resolution.7 @@ -41,7 +41,7 @@ A process may get an entirely private namespace in case it \(em or one of its ancestors \(em was started by an invocation of the .BR clone (2) system call that had the -.BR CLONE_NEWNS +.B CLONE_NEWNS flag set.) This handles the '/' part of the pathname. diff --git a/man7/posixoptions.7 b/man7/posixoptions.7 index f5fd56fdfc..436c909203 100644 --- a/man7/posixoptions.7 +++ b/man7/posixoptions.7 @@ -192,7 +192,7 @@ The function is present. .SS "MSG - _POSIX_MESSAGE_PASSING - _SC_MESSAGE_PASSING" The include file -.IR <mqueue.h> +.I <mqueue.h> is present. The functions .br diff --git a/man7/rtnetlink.7 b/man7/rtnetlink.7 index 51a4090917..0071588b87 100644 --- a/man7/rtnetlink.7 +++ b/man7/rtnetlink.7 @@ -241,7 +241,7 @@ are not interpreted by the kernel, they are just for user information. They may be used to tag the source of a routing information or to distinguish between multiple routing daemons. See -.IR <linux/rtnetlink.h> +.I <linux/rtnetlink.h> for the routing daemon identifiers which are already assigned. .I rtm_scope diff --git a/man7/socket.7 b/man7/socket.7 index d8ff715489..b14a8717be 100644 --- a/man7/socket.7 +++ b/man7/socket.7 @@ -394,7 +394,7 @@ is not changeable on Linux .RB ( setsockopt fails with the error .BR ENOPROTOOPT ). -.BR SO_RCVLOWAT +.B SO_RCVLOWAT is changeable only since Linux 2.4. The @@ -406,7 +406,7 @@ system calls currently do not respect the setting on Linux, and mark a socket readable when even a single byte of data is available. A subsequent read from the socket will block until -.BR SO_RCVLOWAT +.B SO_RCVLOWAT bytes are available. .\" See http://marc.theaimsgroup.com/?l=linux-kernel&m=111049368106984&w=2 .\" Tested on kernel 2.6.14 -- mtk, 30 Nov 05 @@ -617,7 +617,7 @@ returns \-1 with set to .BR ENOENT ). .TP -.BR SIOCSPGRP +.B SIOCSPGRP Set the process or process group to send .B SIGIO or @@ -649,7 +649,7 @@ is raised when a new I/O event occurs. Argument is an integer boolean flag. .\" .TP -.BR SIOCGPGRP +.B SIOCGPGRP Get the current process or process group that receives .B SIGIO or @@ -662,12 +662,12 @@ Valid .BR fcntl (2) operations: .TP -.BR FIOGETOWN +.B FIOGETOWN The same as the .B SIOCGPGRP .BR ioctl (2). .TP -.BR FIOSETOWN +.B FIOSETOWN The same as the .B SIOCSPGRP .BR ioctl (2). diff --git a/man7/spufs.7 b/man7/spufs.7 index 1a1209e303..738d3e4ceb 100644 --- a/man7/spufs.7 +++ b/man7/spufs.7 @@ -283,7 +283,7 @@ and or written to (for .IR wbox_stat ) the respective mailbox without blocking or getting an -.BR EAGAIN +.B EAGAIN error. .RE .TP @@ -429,15 +429,15 @@ The signal notification register will either be replaced with the input data or will be updated to the bitwise OR operation of the old value and the input data, depending on the contents of the -.IR signal1_type +.I signal1_type or -.IR signal2_type +.I signal2_type files respectively. .RE .TP .BR /signal1_type ", " /signal2_type These two files change the behavior of the -.IR signal1 +.I signal1 and .I signal2 notification files. diff --git a/man7/standards.7 b/man7/standards.7 index ff59604c1e..9ac929afc6 100644 --- a/man7/standards.7 +++ b/man7/standards.7 @@ -64,14 +64,14 @@ released in 1981. .B System V release 2 (SVr2) This was the next System V release, made in 1985. The SVr2 was formally described in the -.IR "System V Interface Definition version 1" +.I "System V Interface Definition version 1" .RI ( "SVID 1" ) published in 1985. .TP .B System V release 3 (SVr3) This was the successor to SVr2, released in 1986. This release was formally described in the -.IR "System V Interface Definition version 2" +.I "System V Interface Definition version 2" .RI ( "SVID 2" ). .TP .B System V release 4 (SVr4) @@ -80,7 +80,7 @@ This version of System V is described in the "Programmer's Reference Manual: Operating System API (Intel processors)" (Prentice-Hall 1992, ISBN 0-13-951294-2) This release was formally described in the -.IR "System V Interface Definition version 3" +.I "System V Interface Definition version 3" .RI ( "SVID 3" ), and is considered the definitive System V release. .TP diff --git a/man7/svipc.7 b/man7/svipc.7 index 90eb3e286a..8cd5770777 100644 --- a/man7/svipc.7 +++ b/man7/svipc.7 @@ -46,7 +46,7 @@ In the following, the word means an instantiation of one among such mechanisms. .SS Resource Access Permissions For each resource, the system uses a common structure of type -.IR "struct ipc_perm" +.I "struct ipc_perm" to store information needed in determining permissions to perform an ipc operation. The diff --git a/man7/tcp.7 b/man7/tcp.7 index b450eca372..577e9563e8 100644 --- a/man7/tcp.7 +++ b/man7/tcp.7 @@ -210,7 +210,7 @@ The rest of the space is used as the "application" buffer, used to isolate the network from scheduling and application latencies. The -.IR tcp_adv_win_scale +.I tcp_adv_win_scale default value of 2 implies that the space used for the application buffer is one fourth that of the total. @@ -357,7 +357,7 @@ depending on the memory in the system. If this number is exceeded, the socket is closed and a warning is printed. .TP -.IR tcp_mem +.I tcp_mem This is a vector of 3 integers: [low, pressure, high]. These bounds are used by TCP to track its memory usage. The @@ -430,7 +430,7 @@ if a RST is received in TIME_WAIT state, we close the socket immediately without waiting for the end of the TIME_WAIT period. .TP -.IR tcp_rmem +.I tcp_rmem This is a vector of 3 integers: [min, default, max]. These parameters are used by TCP to regulate receive @@ -560,7 +560,7 @@ windows are desired, applications can increase the size of their socket buffers and the window scaling option will be employed. If -.IR tcp_window_scaling +.I tcp_window_scaling is disabled, TCP will not negotiate the use of window scaling with the other end during connection setup. .\" @@ -592,7 +592,7 @@ account the bandwidth used at the time congestion is experienced. TCP Westwood+ significantly increases fairness with respect to TCP Reno in wired networks and throughput over wireless links. .TP -.IR tcp_wmem +.I tcp_wmem This is a vector of 3 integers: [min, default, max]. These parameters are used by TCP to regulate send buffer sizes. TCP dynamically adjusts the size of the send buffer from the @@ -664,7 +664,7 @@ for which output is corked by If this ceiling is reached, then queued data is automatically transmitted. This option can be combined with -.BR TCP_NODELAY +.B TCP_NODELAY only since Linux 2.5.71. This option should not be used in code intended to be portable. @@ -784,7 +784,7 @@ The correct syntax is: .I ioctl_type is one of the following: .TP -.BR SIOCINQ +.B SIOCINQ Returns the amount of queued unread data in the receive buffer. The socket must not be in LISTEN state, otherwise an error .RB ( EINVAL ) @@ -796,13 +796,13 @@ Returns true (i.e., is non-zero) if the inbound data stream is at the urgent mark. .sp If the -.BR SO_OOBINLINE +.B SO_OOBINLINE socket option is set, and .B SIOCATMARK returns true, then the next read from the socket will return the urgent data. If the -.BR SO_OOBINLINE +.B SO_OOBINLINE socket option is not set, and .B SIOCATMARK returns true, then the diff --git a/man7/time.7 b/man7/time.7 index 2079ce6e96..1436ab562b 100644 --- a/man7/time.7 +++ b/man7/time.7 @@ -82,7 +82,7 @@ Unix systems represent time in seconds since the which is defined as 0:00:00 UTC on the morning of 1 January 1970. A program can determine the -.IR "calendar time" +.I "calendar time" using .BR gettimeofday (2), which returns time (in seconds and microseconds) that have |
