diff options
Diffstat (limited to 'man7')
| -rw-r--r-- | man7/futex.7 | 8 | ||||
| -rw-r--r-- | man7/glob.7 | 4 | ||||
| -rw-r--r-- | man7/packet.7 | 4 | ||||
| -rw-r--r-- | man7/path_resolution.7 | 12 |
4 files changed, 21 insertions, 7 deletions
diff --git a/man7/futex.7 b/man7/futex.7 index e186906aad..49d5d40cdf 100644 --- a/man7/futex.7 +++ b/man7/futex.7 @@ -62,14 +62,18 @@ In the contended case, the atomic increment changed the counter from \-1 (or some other negative number). If this is detected, there are waiters. Userspace should now set the counter to 1 and instruct the -kernel to wake up any waiters using the FUTEX_WAKE operation. +kernel to wake up any waiters using the +.B FUTEX_WAKE +operation. .PP Waiting on a futex, to 'down' it, is the reverse operation. Atomically decrement the counter and check if it changed to 0, in which case the operation is done and the futex was uncontended. In all other circumstances, the process should set the counter to \-1 and request that the kernel wait for another process to up the futex. -This is done using the FUTEX_WAIT operation. +This is done using the +.B FUTEX_WAIT +operation. .PP The .BR futex (2) diff --git a/man7/glob.7 b/man7/glob.7 index 16f79fb13b..b704ed3e53 100644 --- a/man7/glob.7 +++ b/man7/glob.7 @@ -173,7 +173,9 @@ by the LC_COLLATE category in the current locale. so that one can say `[[:lower:]]' instead of `[a\-z]', and have things work in Denmark, too, where there are three letters past `z' in the alphabet. -These character classes are defined by the LC_CTYPE category +These character classes are defined by the +.B LC_CTYPE +category in the current locale. (v) Collating symbols, like `[.ch.]' or `[.a-acute.]', diff --git a/man7/packet.7 b/man7/packet.7 index 2123c52d2f..649fbbf2ed 100644 --- a/man7/packet.7 +++ b/man7/packet.7 @@ -176,7 +176,9 @@ Packet sockets can be used to configure physical layer multicasting and promiscuous mode. It works by calling .BR setsockopt (2) -on a packet socket for SOL_PACKET and one of the options +on a packet socket for +.B SOL_PACKET +and one of the options .B PACKET_ADD_MEMBERSHIP to add a binding or .B PACKET_DROP_MEMBERSHIP diff --git a/man7/path_resolution.7 b/man7/path_resolution.7 index 0d533ade6c..7037d2abfd 100644 --- a/man7/path_resolution.7 +++ b/man7/path_resolution.7 @@ -61,13 +61,17 @@ in the current lookup directory. If the process does not have search permission on the current lookup directory, -an EACCES error is returned ("Permission denied"). +an +.B EACCES +error is returned ("Permission denied"). If the component is not found, an ENOENT error is returned ("No such file or directory"). If the component is found, but is neither a directory nor a symbolic link, -an ENOTDIR error is returned ("Not a directory"). +an +.B ENOTDIR +error is returned ("Not a directory"). If the component is found and is a directory, we set the current lookup directory to that directory, and go to the @@ -77,7 +81,9 @@ If the component is found and is a symbolic link (symlink), we first resolve this symbolic link (with the current lookup directory as starting lookup directory). Upon error, that error is returned. -If the result is not a directory, an ENOTDIR error is returned. +If the result is not a directory, an +.B ENOTDIR +error is returned. If the resolution of the symlink is successful and returns a directory, we set the current lookup directory to that directory, and go to the next component. |
