aboutsummaryrefslogtreecommitdiffstats
path: root/man2
diff options
context:
space:
mode:
Diffstat (limited to 'man2')
-rw-r--r--man2/clock_getres.24
-rw-r--r--man2/clone.22
-rw-r--r--man2/close_range.22
-rw-r--r--man2/futex.22
-rw-r--r--man2/ioctl_fat.22
-rw-r--r--man2/ioctl_tty.24
-rw-r--r--man2/mkdir.22
-rw-r--r--man2/mknod.22
-rw-r--r--man2/mmap.22
-rw-r--r--man2/open.22
-rw-r--r--man2/statx.22
-rw-r--r--man2/umask.22
-rw-r--r--man2/userfaultfd.22
13 files changed, 15 insertions, 15 deletions
diff --git a/man2/clock_getres.2 b/man2/clock_getres.2
index 94328b446a..c10f980faa 100644
--- a/man2/clock_getres.2
+++ b/man2/clock_getres.2
@@ -224,8 +224,8 @@ dynamic clock ID.
.in +4n
.EX
#define CLOCKFD 3
-#define FD_TO_CLOCKID(fd) ((\(ti(clockid_t) (fd) << 3) | CLOCKFD)
-#define CLOCKID_TO_FD(clk) ((unsigned int) \(ti((clk) >> 3))
+#define FD_TO_CLOCKID(fd) ((\[ti](clockid_t) (fd) << 3) | CLOCKFD)
+#define CLOCKID_TO_FD(clk) ((unsigned int) \[ti]((clk) >> 3))
struct timespec ts;
clockid_t clkid;
diff --git a/man2/clone.2 b/man2/clone.2
index 0751dc8539..f318e319a7 100644
--- a/man2/clone.2
+++ b/man2/clone.2
@@ -267,7 +267,7 @@ l l l
li li l.
clone() clone3() Notes
\fIcl_args\fP field
-flags & \(ti0xff flags T{
+flags & \[ti]0xff flags T{
For most flags; details below
T}
parent_tid pidfd See CLONE_PIDFD
diff --git a/man2/close_range.2 b/man2/close_range.2
index 143970387e..dd9406ddc3 100644
--- a/man2/close_range.2
+++ b/man2/close_range.2
@@ -260,7 +260,7 @@ main(int argc, char *argv[])
printf("========= About to call close_range() =======\en");
- if (syscall(SYS_close_range, 3, \(ti0U, 0) == \-1) {
+ if (syscall(SYS_close_range, 3, \[ti]0U, 0) == \-1) {
perror("close_range");
exit(EXIT_FAILURE);
}
diff --git a/man2/futex.2 b/man2/futex.2
index fcb328c950..33a08a14b7 100644
--- a/man2/futex.2
+++ b/man2/futex.2
@@ -673,7 +673,7 @@ component has one of the following values:
FUTEX_OP_SET 0 /* uaddr2 = oparg; */
FUTEX_OP_ADD 1 /* uaddr2 += oparg; */
FUTEX_OP_OR 2 /* uaddr2 |= oparg; */
-FUTEX_OP_ANDN 3 /* uaddr2 &= \(tioparg; */
+FUTEX_OP_ANDN 3 /* uaddr2 &= \[ti]oparg; */
FUTEX_OP_XOR 4 /* uaddr2 \(ha= oparg; */
.EE
.in
diff --git a/man2/ioctl_fat.2 b/man2/ioctl_fat.2
index 0b5e643359..9329ac7e81 100644
--- a/man2/ioctl_fat.2
+++ b/man2/ioctl_fat.2
@@ -410,7 +410,7 @@ The following was recorded when applying the program to the directory
$ \fB./fat_dir /mnt/user\fP
\[char46] \-> \[aq]\[aq]
\[char46]. \-> \[aq]\[aq]
-ALONGF\(ti1.TXT \-> \[aq]a long filename.txt\[aq]
+ALONGF\[ti]1.TXT \-> \[aq]a long filename.txt\[aq]
UPPER.TXT \-> \[aq]\[aq]
LOWER.TXT \-> \[aq]lower.txt\[aq]
.EE
diff --git a/man2/ioctl_tty.2 b/man2/ioctl_tty.2
index fa4f653935..8d2f08242f 100644
--- a/man2/ioctl_tty.2
+++ b/man2/ioctl_tty.2
@@ -847,12 +847,12 @@ main(int argc, char *argv[])
/* Change baud rate when more arguments were provided */
if (argc == 3 || argc == 4) {
/* Clear the current output baud rate and fill a new value */
- tio.c_cflag &= \(tiCBAUD;
+ tio.c_cflag &= \[ti]CBAUD;
tio.c_cflag |= BOTHER;
tio.c_ospeed = atoi(argv[2]);
/* Clear the current input baud rate and fill a new value */
- tio.c_cflag &= \(ti(CBAUD << IBSHIFT);
+ tio.c_cflag &= \[ti](CBAUD << IBSHIFT);
tio.c_cflag |= BOTHER << IBSHIFT;
/* When 4th argument is not provided reuse output baud rate */
tio.c_ispeed = (argc == 4) ? atoi(argv[3]) : atoi(argv[2]);
diff --git a/man2/mkdir.2 b/man2/mkdir.2
index 3f05b55a08..b1339a49a5 100644
--- a/man2/mkdir.2
+++ b/man2/mkdir.2
@@ -49,7 +49,7 @@ It is modified by the process's
.I umask
in the usual way: in the absence of a default ACL, the mode of the
created directory is
-.RI ( mode " & \(ti" umask " & 0777)."
+.RI ( mode " & \[ti]" umask " & 0777)."
Whether other
.I mode
bits are honored for the created directory depends on the operating system.
diff --git a/man2/mknod.2 b/man2/mknod.2
index a606a3c5f0..25657a9d11 100644
--- a/man2/mknod.2
+++ b/man2/mknod.2
@@ -63,7 +63,7 @@ The file mode is modified by the process's
.I umask
in the usual way: in the absence of a default ACL, the permissions of the
created node are
-.RI ( mode " & \(ti" umask ).
+.RI ( mode " & \[ti]" umask ).
.PP
The file type must be one of
.BR S_IFREG ,
diff --git a/man2/mmap.2 b/man2/mmap.2
index f45165eef0..1ecd8637ce 100644
--- a/man2/mmap.2
+++ b/man2/mmap.2
@@ -966,7 +966,7 @@ main(int argc, char *argv[])
handle_error("fstat");
offset = atoi(argv[2]);
- pa_offset = offset & \(ti(sysconf(_SC_PAGE_SIZE) \- 1);
+ pa_offset = offset & \[ti](sysconf(_SC_PAGE_SIZE) \- 1);
/* offset for mmap() must be page aligned */
if (offset >= sb.st_size) {
diff --git a/man2/open.2 b/man2/open.2
index 398e302607..41111c2a4d 100644
--- a/man2/open.2
+++ b/man2/open.2
@@ -293,7 +293,7 @@ The effective mode is modified by the process's
.I umask
in the usual way: in the absence of a default ACL, the mode of the
created file is
-.IR "(mode\ &\ \(tiumask)" .
+.IR "(mode\ &\ \[ti]umask)" .
.IP
Note that
.I mode
diff --git a/man2/statx.2 b/man2/statx.2
index 328a2de356..c79f3c219d 100644
--- a/man2/statx.2
+++ b/man2/statx.2
@@ -238,7 +238,7 @@ is an ORed combination of the following constants:
.TS
lB l.
STATX_TYPE Want stx_mode & S_IFMT
-STATX_MODE Want stx_mode & \(tiS_IFMT
+STATX_MODE Want stx_mode & \[ti]S_IFMT
STATX_NLINK Want stx_nlink
STATX_UID Want stx_uid
STATX_GID Want stx_gid
diff --git a/man2/umask.2 b/man2/umask.2
index 6f1d6a5fd4..541d81c665 100644
--- a/man2/umask.2
+++ b/man2/umask.2
@@ -95,7 +95,7 @@ resulting file will be:
.EE
.in
.PP
-(because 0666 & \(ti022 = 0644; i.e. rw\-r\-\-r\-\-).
+(because 0666 & \[ti]022 = 0644; i.e. rw\-r\-\-r\-\-).
.SH RETURN VALUE
This system call always succeeds and the previous value of the mask
is returned.
diff --git a/man2/userfaultfd.2 b/man2/userfaultfd.2
index dfe5346204..7a0181f2a3 100644
--- a/man2/userfaultfd.2
+++ b/man2/userfaultfd.2
@@ -845,7 +845,7 @@ fault_handler_thread(void *arg)
So, round faulting address down to page boundary. */
uffdio_copy.dst = (unsigned long) msg.arg.pagefault.address &
- \(ti(page_size \- 1);
+ \[ti](page_size \- 1);
uffdio_copy.len = page_size;
uffdio_copy.mode = 0;
uffdio_copy.copy = 0;