Site icon EfmSoft

What does errno 29 (ESPIPE) mean?

 
Could be also:
ConstantTypeOS
ERROR_WRITE_FAULTWin32 errorWindows
KERN_INVALID_OBJECTKern returnMac
ippStsWrongIntersectROIIntel Ipp StatusAny
NO_SPIN_LOCK_AVAILABLEBugCheck CodeWindows
Previous Next
ENOSPC EROFS

ESPIPE

What cannot be repositioned

ESPIPE means an operation tried to use a file position on an object that has no seekable byte offset. Pipes, FIFOs, and sockets carry a stream of data rather than exposing a stable position that can be moved backward, forward, or queried like an ordinary file. The same limitation commonly applies to terminals and some devices.

The error is most often returned by lseek(), but a higher-level stream function can surface the same condition when it eventually asks the underlying descriptor to seek. It does not mean that the stream is broken. It means the application selected a file-oriented operation for a sequential data source.

How to handle it

References


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

Exit mobile version