diff options
Diffstat (limited to 'lib/libc/sys/msgsnd.2')
-rw-r--r-- | lib/libc/sys/msgsnd.2 | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/lib/libc/sys/msgsnd.2 b/lib/libc/sys/msgsnd.2 index bc1093da11c..4b648529feb 100644 --- a/lib/libc/sys/msgsnd.2 +++ b/lib/libc/sys/msgsnd.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: msgsnd.2,v 1.15 2007/05/31 19:19:33 jmc Exp $ +.\" $OpenBSD: msgsnd.2,v 1.16 2007/09/03 14:37:52 millert Exp $ .\" $NetBSD: msgsnd.2,v 1.2 1997/03/27 08:20:36 mikel Exp $ .\" .\" Copyright (c) 1995 Frank van der Linden @@ -30,7 +30,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\"/ -.Dd $Mdocdate: May 31 2007 $ +.Dd $Mdocdate: September 3 2007 $ .Dt MSGSND 2 .Os .Sh NAME @@ -132,11 +132,6 @@ will fail if: .Fa msqid is not a valid message queue identifier. .Pp -The message queue was removed while -.Fn msgsnd -was waiting for a resource to become available in order to deliver the -message. -.Pp .Fa msgsz is greater than .Va msg_qbytes . @@ -153,6 +148,11 @@ was set in points to an invalid address. .It Bq Er EINTR The system call was interrupted by the delivery of a signal. +.It Bq Er EIDRM +The message queue was removed while +.Fn msgsnd +was waiting for a resource to become available in order to deliver the +message. .El .Sh SEE ALSO .Xr msgctl 2 , @@ -160,9 +160,3 @@ The system call was interrupted by the delivery of a signal. .Xr msgrcv 2 .Sh HISTORY Message queues appeared in the first release of AT&T Unix System V. -.Sh BUGS -.Ox -does not define the -.Er EIDRM -error value, which should be used -in the case of a removed message queue. |