Site icon EfmSoft

What does errno 62 (ETIME) in Linux mean?

 
Could be also:
ConstantTypeOS
ERROR_NO_SPOOL_SPACEWin32 errorWindows
ELOOPerrnoMac
ETIMEerrnoSolaris
MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTEDBugCheck CodeWindows
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 errno, 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 errno.
  • The timeout value configured by that layer, not just wall-clock duration.
  • Whether the same path can also return EAGAIN, EINTR, or ETIMEDOUT.

Linux errno(3) · Linux UAPI errno definitions


Looking for a different code? Search another status or error code.

Exit mobile version