From 73798a70be8d26907d31ecabdf76f941c56bae19 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Wed, 16 Jan 2013 05:30:00 +0100 Subject: voodoo/unix: Exit on EPIPE in send --- Source/DirectFB/lib/voodoo/unix/link_unix.c | 2 ++ Source/DirectFB/lib/voodoo/unix/link_unix_1408limit.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Source/DirectFB/lib/voodoo/unix/link_unix.c b/Source/DirectFB/lib/voodoo/unix/link_unix.c index 1b6690c..65e3768 100755 --- a/Source/DirectFB/lib/voodoo/unix/link_unix.c +++ b/Source/DirectFB/lib/voodoo/unix/link_unix.c @@ -181,6 +181,8 @@ SendReceive( VoodooLink *link, ret = send( l->fd[1], sends[i].ptr, sends[i].length, MSG_DONTWAIT ); if (ret < 0) { D_PERROR( "Voodoo/Link: Failed to send() data!\n" ); + if (errno == EPIPE) + exit(13); return DR_IO; } else { diff --git a/Source/DirectFB/lib/voodoo/unix/link_unix_1408limit.c b/Source/DirectFB/lib/voodoo/unix/link_unix_1408limit.c index 790aa99..c05ae31 100755 --- a/Source/DirectFB/lib/voodoo/unix/link_unix_1408limit.c +++ b/Source/DirectFB/lib/voodoo/unix/link_unix_1408limit.c @@ -176,6 +176,8 @@ SendReceive( VoodooLink *link, // break; //} D_PERROR( "Voodoo/Link: Failed to send() data!\n" ); + if (errno == EPIPE) + exit(13); return DR_FAILURE; } else { -- cgit