kicad/thirdparty/sentry-native/external/libunwindstack-ndk/unistdfix.h

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; })