Changeset 1dbc3e10 for benchmark


Ignore:
Timestamp:
Jan 15, 2021, 3:18:11 PM (3 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
4f449d2
Parents:
b7664a0
Message:

Added missing EPIPE handling

File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/io/http/protocol.cfa

    rb7664a0 r1dbc3e10  
    104104                        if( errno == EAGAIN || errno == EWOULDBLOCK) continue READ;
    105105                        if( errno == ECONNRESET ) return [E408, true, 0, 0];
     106                        if( errno == EPIPE ) return [E408, true, 0, 0];
    106107                        abort( "read error: (%d) %s\n", (int)errno, strerror(errno) );
    107108                }
Note: See TracChangeset for help on using the changeset viewer.