You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a connection is not reset properly at the TCP level (e.g. sudden
power loss or process crash) the TCP connection becomes half-open and
read() always returns -1 with errno = EAGAIN while select() always
returns 0. This leads to an infinite loop and can be fixed by closing
the connection after a certain number of retries (based on a timeout)
has been exceeded.
https://lvc.github.io/abi-compliance-checker/ seems a good idea and is used by other projects: https://github.com/uclouvain/openjpeg/blob/master/tools/travis-ci/abi-check.sh and/or https://github.com/GrokImageCompression/grok/blob/master/tools/travis-ci/abi-check.sh
The text was updated successfully, but these errors were encountered: