aboutsummaryrefslogtreecommitdiffstats
path: root/man2
diff options
context:
space:
mode:
Diffstat (limited to 'man2')
-rw-r--r--man2/get_thread_area.24
-rw-r--r--man2/getrlimit.28
-rw-r--r--man2/init_module.24
-rw-r--r--man2/sched_setparam.22
-rw-r--r--man2/set_thread_area.26
-rw-r--r--man2/umask.22
6 files changed, 13 insertions, 13 deletions
diff --git a/man2/get_thread_area.2 b/man2/get_thread_area.2
index 960197afb7..4ec052a958 100644
--- a/man2/get_thread_area.2
+++ b/man2/get_thread_area.2
@@ -16,7 +16,7 @@ get_thread_area \- Get a Thread Local Storage (TLS) area
.BR get_thread_area ()
returns an entry in the current thread's Thread Local Storage (TLS) array.
The index of the entry corresponds to the value
-of \fIu_info->entry_number\fP, passed in by the user.
+of \fIu_info\->entry_number\fP, passed in by the user.
If the value is in bounds,
.BR get_thread_area ()
copies the corresponding
@@ -33,7 +33,7 @@ appropriately.
\fIu_info\fP is an invalid pointer.
.TP
.B EINVAL
-\fIu_info->entry_number\fP is out of bounds.
+\fIu_info\->entry_number\fP is out of bounds.
.SH VERSIONS
A version of
.BR get_thread_area ()
diff --git a/man2/getrlimit.2 b/man2/getrlimit.2
index 928bdb8521..dc843d252f 100644
--- a/man2/getrlimit.2
+++ b/man2/getrlimit.2
@@ -346,9 +346,9 @@ points outside the accessible address space.
is not valid;
or, for
.BR setrlimit ():
-.I rlim->rlim_cur
+.I rlim\->rlim_cur
was greater than
-.IR rlim->rlim_max .
+.IR rlim\->rlim_max .
.TP
.B EPERM
An unprivileged process tried to use
@@ -425,9 +425,9 @@ Kernels before 2.4.22 did not diagnose the error
for
.BR setrlimit ()
when
-.I rlim->rlim_cur
+.I rlim\->rlim_cur
was greater than
-.IR rlim->rlim_max .
+.IR rlim\->rlim_max .
.SH "SEE ALSO"
.BR dup (2),
.BR fcntl (2),
diff --git a/man2/init_module.2 b/man2/init_module.2
index 5d9559bb0b..c7a0838abc 100644
--- a/man2/init_module.2
+++ b/man2/init_module.2
@@ -79,9 +79,9 @@ is outside the program's accessible address space.
Some
.I image
slot is filled in incorrectly,
-.I image->name
+.I image\->name
does not correspond to the original module name, some
-.I image->deps
+.I image\->deps
entry does not correspond to a loaded module,
or some other similar inconsistency.
.TP
diff --git a/man2/sched_setparam.2 b/man2/sched_setparam.2
index e1beeefba9..7de179c8f8 100644
--- a/man2/sched_setparam.2
+++ b/man2/sched_setparam.2
@@ -68,7 +68,7 @@ of the current process are retrieved.
.BR sched_setparam ()
checks the validity of \fIparam\fP for the scheduling policy of the
process.
-The parameter \fIparam->sched_priority\fP must lie within the
+The parameter \fIparam\->sched_priority\fP must lie within the
range given by
.BR sched_get_priority_min (2)
and
diff --git a/man2/set_thread_area.2 b/man2/set_thread_area.2
index 2b39efc1a1..a2ba31b6d8 100644
--- a/man2/set_thread_area.2
+++ b/man2/set_thread_area.2
@@ -19,7 +19,7 @@ sets an entry in the current thread's Thread Local Storage (TLS) array.
The TLS array entry set by
.BR set_thread_area ()
corresponds to the value of
-.I u_info->entry_number
+.I u_info\->entry_number
passed in by the user.
If this value is in bounds,
.BR set_thread_area ()
@@ -35,7 +35,7 @@ of \-1, it uses a free TLS entry.
If
.BR set_thread_area ()
finds a free TLS entry, the value of
-.I u_info->entry_number
+.I u_info\->entry_number
is set upon return to show which entry was changed.
.SH "RETURN VALUE"
.BR set_thread_area ()
@@ -45,7 +45,7 @@ set appropriately.
.SH "ERRORS"
.TP
.B EINVAL
-\fIu_info->entry_number\fP is out of bounds.
+\fIu_info\->entry_number\fP is out of bounds.
.TP
.B EFAULT
\fIu_info\fP is an invalid pointer.
diff --git a/man2/umask.2 b/man2/umask.2
index 13a0e9cfed..35eaa74018 100644
--- a/man2/umask.2
+++ b/man2/umask.2
@@ -82,7 +82,7 @@ resulting file will be:
S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH
.fi
-(because 0666 & ~022 = 0644; i.e., rw-r--r--).
+(because 0666 & ~022 = 0644; i.e., rw\-r\-\-r\-\-).
.SH "RETURN VALUE"
This system call always succeeds and the previous value of the mask
is returned.