From 9fdbbfc8ba8d248c0ff228b31dcd90c3bd8f3b83 Mon Sep 17 00:00:00 2001 From: grant Date: Mon, 30 Dec 2002 05:45:41 +0000 Subject: [PATCH] add EINTR. From Kevin P. Neal in PR bin/19402. --- lib/libc/sys/write.2 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/libc/sys/write.2 b/lib/libc/sys/write.2 index 7f421d1c8a92..72251620f984 100644 --- a/lib/libc/sys/write.2 +++ b/lib/libc/sys/write.2 @@ -1,4 +1,4 @@ -.\" $NetBSD: write.2,v 1.21 2002/10/01 18:10:46 wiz Exp $ +.\" $NetBSD: write.2,v 1.22 2002/12/30 05:45:41 grant Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -33,7 +33,7 @@ .\" .\" @(#)write.2 8.5 (Berkeley) 4/2/94 .\" -.Dd August 18, 2002 +.Dd December 30, 2002 .Dt WRITE 2 .Os .Sh NAME @@ -187,6 +187,8 @@ The user's quota of disk blocks on the file system containing the file has been exhausted. .It Bq Er EIO An I/O error occurred while reading from or writing to the file system. +.It Bq Er EINTR +A signal was received before any data could be written. .It Bq Er EAGAIN The file was marked for non-blocking I/O, and no data could be written immediately.