|
Planeshift
|
#include <errno.h>Go to the source code of this file.
Defines | |
| #define | HANDLE_EINTR(x) |
| #define HANDLE_EINTR | ( | x | ) |
({ \
typeof(x) __eintr_result__; \
do { \
__eintr_result__ = x; \
} while (__eintr_result__ == -1 && errno == EINTR); \
__eintr_result__;\
})
Definition at line 39 of file eintr_wrapper.h.
1.7.3