From: Adam Dickmeiss Date: Tue, 8 Feb 2005 13:23:23 +0000 (+0000) Subject: Worked around bug #261 again. Added sleep for EAGAIN case X-Git-Tag: YAZ.2.0.34~7 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=173c87dff98e363ecf2a663ae9de91bac69e77f5 Worked around bug #261 again. Added sleep for EAGAIN case --- diff --git a/src/unix.c b/src/unix.c index 99f0181..c5f55af 100644 --- a/src/unix.c +++ b/src/unix.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: unix.c,v 1.12 2005-02-04 13:28:47 adam Exp $ + * $Id: unix.c,v 1.13 2005-02-08 13:23:23 adam Exp $ * UNIX socket COMSTACK. By Morten Bøgeskov. */ /** @@ -313,6 +313,7 @@ static int unix_connect(COMSTACK h, void *address) { struct sockaddr_un *add = (struct sockaddr_un *)address; int r; + int i; TRC(fprintf(stderr, "unix_connect\n")); h->io_pending = 0; @@ -321,10 +322,24 @@ static int unix_connect(COMSTACK h, void *address) h->cerrno = CSOUTSTATE; return -1; } - r = connect(h->iofile, (struct sockaddr *) add, SUN_LEN(add)); + for (i = 0; i<3; i++) + { + r = connect(h->iofile, (struct sockaddr *) add, SUN_LEN(add)); + if (r < 0 && yaz_errno() == EAGAIN) + { +#if HAVE_USLEEP + usleep(i*10000+1000); /* 1ms, 11ms, 21ms */ +#else + sleep(1); +#endif + continue; + } + else + break; + } if (r < 0) { - if (yaz_errno() == EINPROGRESS || yaz_errno() == EAGAIN) + if (yaz_errno() == EINPROGRESS) { h->event = CS_CONNECT; h->state = CS_ST_CONNECTING;