diff options
author | Michael Kerrisk <mtk.manpages@gmail.com> | 2010-12-03 08:01:44 +0100 |
---|---|---|
committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2010-12-03 08:01:44 +0100 |
commit | c5662d5de032696d9c169adb806e962f2e809cba (patch) | |
tree | f64cfdbaae2d5bd3454a41b1bf8c0fdc13c0f8b5 | |
parent | 572968eddc76c21407e94c06d696a1f493712c20 (diff) |
Removed trailing white space at end of lines
-rw-r--r-- | man2/chown.2 | 2 | ||||
-rw-r--r-- | man2/getdents.2 | 2 | ||||
-rw-r--r-- | man2/getgid.2 | 2 | ||||
-rw-r--r-- | man2/getgroups.2 | 2 | ||||
-rw-r--r-- | man2/getresuid.2 | 2 | ||||
-rw-r--r-- | man2/getrlimit.2 | 6 | ||||
-rw-r--r-- | man2/getuid.2 | 2 | ||||
-rw-r--r-- | man2/readv.2 | 2 | ||||
-rw-r--r-- | man2/setfsgid.2 | 2 | ||||
-rw-r--r-- | man2/setfsuid.2 | 2 | ||||
-rw-r--r-- | man2/setgid.2 | 2 | ||||
-rw-r--r-- | man2/setresuid.2 | 2 | ||||
-rw-r--r-- | man2/setreuid.2 | 2 | ||||
-rw-r--r-- | man2/setuid.2 | 2 |
14 files changed, 16 insertions, 16 deletions
diff --git a/man2/chown.2 b/man2/chown.2 index dabf9bff7..deb87c707 100644 --- a/man2/chown.2 +++ b/man2/chown.2 @@ -196,7 +196,7 @@ The original Linux and .BR lchown () system calls supported only 16-bit user and group IDs. -Subsequently, Linux 2.4 added +Subsequently, Linux 2.4 added .BR chown32 (), .BR fchown32 (), and diff --git a/man2/getdents.2 b/man2/getdents.2 index 07e2b597c..0e1729c37 100644 --- a/man2/getdents.2 +++ b/man2/getdents.2 @@ -174,7 +174,7 @@ The original Linux system call did not handle large file systems and large file offsets. Consequently, Linux 2.4 added .BR getdents64 (), -with wider types for the +with wider types for the .I d_ino and .I d_off diff --git a/man2/getgid.2 b/man2/getgid.2 index 45e9ad9b4..1fc602b4c 100644 --- a/man2/getgid.2 +++ b/man2/getgid.2 @@ -49,7 +49,7 @@ The original Linux and .BR getegid () system calls supported only 16-bit group IDs. -Subsequently, Linux 2.4 added +Subsequently, Linux 2.4 added .BR getgid32 () and .BR getegid32 (), diff --git a/man2/getgroups.2 b/man2/getgroups.2 index 39f50946b..3c47375c9 100644 --- a/man2/getgroups.2 +++ b/man2/getgroups.2 @@ -162,7 +162,7 @@ cannot be larger than one more than this value. The original Linux .BR getgroups () system call supported only 16-bit group IDs. -Subsequently, Linux 2.4 added +Subsequently, Linux 2.4 added .BR getgroups32 (), supporting 32-bit IDs. The glibc diff --git a/man2/getresuid.2 b/man2/getresuid.2 index 6adc55699..368eb1a40 100644 --- a/man2/getresuid.2 +++ b/man2/getresuid.2 @@ -72,7 +72,7 @@ The original Linux and .BR getresgid () system calls supported only 16-bit user and group IDs. -Subsequently, Linux 2.4 added +Subsequently, Linux 2.4 added .BR getresuid32 () and .BR getresgid32 (), diff --git a/man2/getrlimit.2 b/man2/getrlimit.2 index 30e6b452d..52f99ab20 100644 --- a/man2/getrlimit.2 +++ b/man2/getrlimit.2 @@ -541,7 +541,7 @@ main(int argc, char *argv[]) "<new\-hard\-limit>]\\n", argv[0]); exit(EXIT_FAILURE); } - + pid = atoi(argv[1]); /* PID of target process */ newp = NULL; @@ -554,14 +554,14 @@ main(int argc, char *argv[]) /* Set CPU time limit of target prcess; retrieve and display previous limit */ - if (prlimit(pid, RLIMIT_CPU, newp, &old) == \-1) + if (prlimit(pid, RLIMIT_CPU, newp, &old) == \-1) errExit("prlimit\-1"); printf("Previous limits: soft=%lld; hard=%lld\\n", (long long) old.rlim_cur, (long long) old.rlim_max); /* Retrieve and display new CPU time limit */ - if (prlimit(pid, RLIMIT_CPU, NULL, &old) == \-1) + if (prlimit(pid, RLIMIT_CPU, NULL, &old) == \-1) errExit("prlimit\-2"); printf("New limits: soft=%lld; hard=%lld\\n", (long long) old.rlim_cur, (long long) old.rlim_max); diff --git a/man2/getuid.2 b/man2/getuid.2 index 89975ed22..bf138e30f 100644 --- a/man2/getuid.2 +++ b/man2/getuid.2 @@ -60,7 +60,7 @@ The original Linux and .BR geteuid () system calls supported only 16-bit user IDs. -Subsequently, Linux 2.4 added +Subsequently, Linux 2.4 added .BR getuid32 () and .BR geteuid32 (), diff --git a/man2/readv.2 b/man2/readv.2 index 5cf3ca44a..709c73c3e 100644 --- a/man2/readv.2 +++ b/man2/readv.2 @@ -38,7 +38,7 @@ readv, writev, preadv, pwritev \- read or write data into multiple buffers .sp .BI "ssize_t writev(int " fd ", const struct iovec *" iov ", int " iovcnt ); .sp -.BI "ssize_t preadv(int " fd ", const struct iovec *" iov ", int " iovcnt , +.BI "ssize_t preadv(int " fd ", const struct iovec *" iov ", int " iovcnt , .BI " off_t " offset ); .sp .BI "ssize_t pwritev(int " fd ", const struct iovec *" iov ", int " iovcnt , diff --git a/man2/setfsgid.2 b/man2/setfsgid.2 index cdf94f2a8..a5f789a50 100644 --- a/man2/setfsgid.2 +++ b/man2/setfsgid.2 @@ -93,7 +93,7 @@ Today signal permission handling is slightly different. The original Linux .BR setfsgid () system call supported only 16-bit group IDs. -Subsequently, Linux 2.4 added +Subsequently, Linux 2.4 added .BR setfsgid32 () supporting 32-bit IDs. The glibc diff --git a/man2/setfsuid.2 b/man2/setfsuid.2 index f6ea56137..cda8e2241 100644 --- a/man2/setfsuid.2 +++ b/man2/setfsuid.2 @@ -93,7 +93,7 @@ Today signal permission handling is slightly different. The original Linux .BR setfsuid () system call supported only 16-bit user IDs. -Subsequently, Linux 2.4 added +Subsequently, Linux 2.4 added .BR setfsuid32 () supporting 32-bit IDs. The glibc diff --git a/man2/setgid.2 b/man2/setgid.2 index 6d20fec0d..593847256 100644 --- a/man2/setgid.2 +++ b/man2/setgid.2 @@ -65,7 +65,7 @@ the calling process. The original Linux .BR setgid () system call supported only 16-bit group IDs. -Subsequently, Linux 2.4 added +Subsequently, Linux 2.4 added .BR setgid32 () supporting 32-bit IDs. The glibc diff --git a/man2/setresuid.2 b/man2/setresuid.2 index d93240e1b..3dbcbf3a5 100644 --- a/man2/setresuid.2 +++ b/man2/setresuid.2 @@ -93,7 +93,7 @@ The original Linux and .BR setresgid () system calls supported only 16-bit user and group IDs. -Subsequently, Linux 2.4 added +Subsequently, Linux 2.4 added .BR setresuid32 () and .BR setresgid32 (), diff --git a/man2/setreuid.2 b/man2/setreuid.2 index 82681f186..3b61f461f 100644 --- a/man2/setreuid.2 +++ b/man2/setreuid.2 @@ -144,7 +144,7 @@ The original Linux and .BR setregid () system calls supported only 16-bit user and group IDs. -Subsequently, Linux 2.4 added +Subsequently, Linux 2.4 added .BR setreuid32 () and .BR setregid32 (), diff --git a/man2/setuid.2 b/man2/setuid.2 index d9a269791..0a1e1a1d3 100644 --- a/man2/setuid.2 +++ b/man2/setuid.2 @@ -109,7 +109,7 @@ be forbidden from leaving core dumps. The original Linux .BR setuid () system call supported only 16-bit user IDs. -Subsequently, Linux 2.4 added +Subsequently, Linux 2.4 added .BR setuid32 () supporting 32-bit IDs. The glibc |