Removed trailing white space at end of lines

This commit is contained in:
Michael Kerrisk 2010-12-03 08:01:44 +01:00
parent 572968eddc
commit c5662d5de0
14 changed files with 16 additions and 16 deletions

View File

@ -196,7 +196,7 @@ The original Linux
and and
.BR lchown () .BR lchown ()
system calls supported only 16-bit user and group IDs. system calls supported only 16-bit user and group IDs.
Subsequently, Linux 2.4 added Subsequently, Linux 2.4 added
.BR chown32 (), .BR chown32 (),
.BR fchown32 (), .BR fchown32 (),
and and

View File

@ -174,7 +174,7 @@ The original Linux
system call did not handle large file systems and large file offsets. system call did not handle large file systems and large file offsets.
Consequently, Linux 2.4 added Consequently, Linux 2.4 added
.BR getdents64 (), .BR getdents64 (),
with wider types for the with wider types for the
.I d_ino .I d_ino
and and
.I d_off .I d_off

View File

@ -49,7 +49,7 @@ The original Linux
and and
.BR getegid () .BR getegid ()
system calls supported only 16-bit group IDs. system calls supported only 16-bit group IDs.
Subsequently, Linux 2.4 added Subsequently, Linux 2.4 added
.BR getgid32 () .BR getgid32 ()
and and
.BR getegid32 (), .BR getegid32 (),

View File

@ -162,7 +162,7 @@ cannot be larger than one more than this value.
The original Linux The original Linux
.BR getgroups () .BR getgroups ()
system call supported only 16-bit group IDs. system call supported only 16-bit group IDs.
Subsequently, Linux 2.4 added Subsequently, Linux 2.4 added
.BR getgroups32 (), .BR getgroups32 (),
supporting 32-bit IDs. supporting 32-bit IDs.
The glibc The glibc

View File

@ -72,7 +72,7 @@ The original Linux
and and
.BR getresgid () .BR getresgid ()
system calls supported only 16-bit user and group IDs. system calls supported only 16-bit user and group IDs.
Subsequently, Linux 2.4 added Subsequently, Linux 2.4 added
.BR getresuid32 () .BR getresuid32 ()
and and
.BR getresgid32 (), .BR getresgid32 (),

View File

@ -541,7 +541,7 @@ main(int argc, char *argv[])
"<new\-hard\-limit>]\\n", argv[0]); "<new\-hard\-limit>]\\n", argv[0]);
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
pid = atoi(argv[1]); /* PID of target process */ pid = atoi(argv[1]); /* PID of target process */
newp = NULL; newp = NULL;
@ -554,14 +554,14 @@ main(int argc, char *argv[])
/* Set CPU time limit of target prcess; retrieve and display /* Set CPU time limit of target prcess; retrieve and display
previous limit */ previous limit */
if (prlimit(pid, RLIMIT_CPU, newp, &old) == \-1) if (prlimit(pid, RLIMIT_CPU, newp, &old) == \-1)
errExit("prlimit\-1"); errExit("prlimit\-1");
printf("Previous limits: soft=%lld; hard=%lld\\n", printf("Previous limits: soft=%lld; hard=%lld\\n",
(long long) old.rlim_cur, (long long) old.rlim_max); (long long) old.rlim_cur, (long long) old.rlim_max);
/* Retrieve and display new CPU time limit */ /* 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"); errExit("prlimit\-2");
printf("New limits: soft=%lld; hard=%lld\\n", printf("New limits: soft=%lld; hard=%lld\\n",
(long long) old.rlim_cur, (long long) old.rlim_max); (long long) old.rlim_cur, (long long) old.rlim_max);

View File

@ -60,7 +60,7 @@ The original Linux
and and
.BR geteuid () .BR geteuid ()
system calls supported only 16-bit user IDs. system calls supported only 16-bit user IDs.
Subsequently, Linux 2.4 added Subsequently, Linux 2.4 added
.BR getuid32 () .BR getuid32 ()
and and
.BR geteuid32 (), .BR geteuid32 (),

View File

@ -38,7 +38,7 @@ readv, writev, preadv, pwritev \- read or write data into multiple buffers
.sp .sp
.BI "ssize_t writev(int " fd ", const struct iovec *" iov ", int " iovcnt ); .BI "ssize_t writev(int " fd ", const struct iovec *" iov ", int " iovcnt );
.sp .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 ); .BI " off_t " offset );
.sp .sp
.BI "ssize_t pwritev(int " fd ", const struct iovec *" iov ", int " iovcnt , .BI "ssize_t pwritev(int " fd ", const struct iovec *" iov ", int " iovcnt ,

View File

@ -93,7 +93,7 @@ Today signal permission handling is slightly different.
The original Linux The original Linux
.BR setfsgid () .BR setfsgid ()
system call supported only 16-bit group IDs. system call supported only 16-bit group IDs.
Subsequently, Linux 2.4 added Subsequently, Linux 2.4 added
.BR setfsgid32 () .BR setfsgid32 ()
supporting 32-bit IDs. supporting 32-bit IDs.
The glibc The glibc

View File

@ -93,7 +93,7 @@ Today signal permission handling is slightly different.
The original Linux The original Linux
.BR setfsuid () .BR setfsuid ()
system call supported only 16-bit user IDs. system call supported only 16-bit user IDs.
Subsequently, Linux 2.4 added Subsequently, Linux 2.4 added
.BR setfsuid32 () .BR setfsuid32 ()
supporting 32-bit IDs. supporting 32-bit IDs.
The glibc The glibc

View File

@ -65,7 +65,7 @@ the calling process.
The original Linux The original Linux
.BR setgid () .BR setgid ()
system call supported only 16-bit group IDs. system call supported only 16-bit group IDs.
Subsequently, Linux 2.4 added Subsequently, Linux 2.4 added
.BR setgid32 () .BR setgid32 ()
supporting 32-bit IDs. supporting 32-bit IDs.
The glibc The glibc

View File

@ -93,7 +93,7 @@ The original Linux
and and
.BR setresgid () .BR setresgid ()
system calls supported only 16-bit user and group IDs. system calls supported only 16-bit user and group IDs.
Subsequently, Linux 2.4 added Subsequently, Linux 2.4 added
.BR setresuid32 () .BR setresuid32 ()
and and
.BR setresgid32 (), .BR setresgid32 (),

View File

@ -144,7 +144,7 @@ The original Linux
and and
.BR setregid () .BR setregid ()
system calls supported only 16-bit user and group IDs. system calls supported only 16-bit user and group IDs.
Subsequently, Linux 2.4 added Subsequently, Linux 2.4 added
.BR setreuid32 () .BR setreuid32 ()
and and
.BR setregid32 (), .BR setregid32 (),

View File

@ -109,7 +109,7 @@ be forbidden from leaving core dumps.
The original Linux The original Linux
.BR setuid () .BR setuid ()
system call supported only 16-bit user IDs. system call supported only 16-bit user IDs.
Subsequently, Linux 2.4 added Subsequently, Linux 2.4 added
.BR setuid32 () .BR setuid32 ()
supporting 32-bit IDs. supporting 32-bit IDs.
The glibc The glibc