| Previous | Next |
| ENODATA | ELOOP |
ETIME
ETIME is the Linux errno name for “Timer expired”. In Linux error tables it is mostly a compatibility value from STREAMS/System V style interfaces, not the normal timeout used by sockets and most system calls.
If an application sees this result, preserve the subsystem that returned it. A socket connect timeout is normally reported as ETIMEDOUT; a timed wait may use ETIMEDOUT or an API-specific status. Treating it as generic network timeout can hide the compatibility layer that actually failed.
Evidence to keep
- The exact function, ioctl, or library call that returned this result.
- The timeout value configured by that layer, not just wall-clock duration.
- Whether the same path can also return
EAGAIN,EINTR, orETIMEDOUT.
Linux errno(3) · Linux UAPI errno definitions
Looking for a different code? Search another status or error code.
