mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-01-08 02:54:43 +00:00
8 lines
263 B
C
8 lines
263 B
C
#undef TEMP_FAILURE_RETRY
|
|
#define TEMP_FAILURE_RETRY(exp) ({ \
|
|
__typeof__(exp) _rc; \
|
|
do { \
|
|
_rc = (exp); \
|
|
} while (_rc == -1 && errno == EINTR); \
|
|
_rc; })
|