Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
8answers
3k views

Unit testing error conditions - EINTR

In short, how do you unit test an error condition such as EINTR on a system call. One particular example I'm working on, which could be a case all by itself, is whether it's necessary to call fclose ...
3
votes
3answers
676 views

When to check for EINTR and repeat the function call?

I am programming a user application for a embedded Linux system, and I am using the common functions such as open, close, read, ioctl, etc. for the devices. Now, I read about EINTR, indicates that ...
2
votes
2answers
494 views

Handling EINTR (with goto?)

Background: This is a follow-up question to this thread about handling EINTR for system calls in C++ (Linux/GCC). Regardless of whether or not I intend to profile my application, it seems like I ...
1
vote
1answer
69 views

Any workarounds for Python's select and handling of EINTR in Linux?

In one of my recent projects I happened to have in the same process (a Python program, its a multithreaded application): a Boost::Python module to a library that linked against the AVT PvAPI SDK, ...
0
votes
0answers
53 views

TEMP_FAILURE_RETRY and nonblocking sockets

Should I use TEMP_FAILURE_RETRY to surround library calls (which can fail and set errno to EINTR) on nonblocking sockets?
0
votes
2answers
666 views

Socket Read In Multi-Threaded Application Returns Zero Bytes or EINTR (104)

Am a c-coder for a while now - neither a newbie nor an expert. Now, I have a certain daemoned application in C on a PPC Linux. I use PHP's socket_connect as a client to connect to this service ...