MCPcopy Create free account
hub / github.com/apache/trafficserver / transient_error

Function transient_error

include/iocore/eventsystem/UnixSocket.h:319–330  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

317}
318
319inline bool
320transient_error()
321{
322 bool transient = (errno == EINTR);
323#ifdef ENOMEM
324 transient = transient || (errno == ENOMEM);
325#endif
326#ifdef ENOBUFS
327 transient = transient || (errno == ENOBUFS);
328#endif
329 return transient;
330}

Callers 3

accept4Method · 0.85
accept4Function · 0.85
pollMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected