truncate.2: Remove redundant EINTR description

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Seonghun Lim 2011-09-08 17:02:17 +02:00 committed by Michael Kerrisk
parent da2336b314
commit 374ce86756
1 changed files with 6 additions and 9 deletions

View File

@ -38,7 +38,7 @@
.\" Modified 2002-04-06 by Andries Brouwer <aeb@cwi.nl>
.\" Modified 2004-06-23 by Michael Kerrisk <mtk.manpages@gmail.com>
.\"
.TH TRUNCATE 2 2010-11-21 "Linux" "Linux Programmer's Manual"
.TH TRUNCATE 2 2011-09-08 "Linux" "Linux Programmer's Manual"
.SH NAME
truncate, ftruncate \- truncate a file to a specified length
.SH SYNOPSIS
@ -130,7 +130,11 @@ The argument
is larger than the maximum file size. (XSI)
.TP
.B EINTR
A signal was caught during execution.
While blocked waiting to complete,
the call was interrupted by a signal handler; see
.BR fcntl (2)
and
.BR signal (7).
.TP
.B EINVAL
The argument
@ -140,13 +144,6 @@ is negative or larger than the maximum file size.
.B EIO
An I/O error occurred updating the inode.
.TP
.B EINTR
While blocked waiting to complete,
the call was interrupted by a signal handler; see
.BR fcntl (2)
and
.BR signal (7).
.TP
.B EISDIR
The named file is a directory.
.TP