Site icon EfmSoft

What does errno 149 (EALREADY) mean?

 
Could be also:
ConstantTypeOS
ERROR_IS_SUBST_TARGETWin32 errorWindows
PNP_INTERNAL_ERRORBugCheck CodeWindows
Previous Next
EHOSTUNREACH EINPROGRESS

EALREADY

A second operation arrived while the first is pending

EALREADY is a nonblocking state error. Solaris says an operation was attempted on a nonblocking object that already has an operation in progress. POSIX connect() specifically uses the errno when a connection request is already in progress for the socket.

This is the follow-on distinction from EINPROGRESS. The first nonblocking connect can return EINPROGRESS because connection establishment has started asynchronously; repeating connect() before that attempt resolves can yield EALREADY.

Correct nonblocking connect flow

References


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

Exit mobile version