test-skeleton.h 418 B

12345678
  1. #ifndef TEMP_FAILURE_RETRY
  2. #define TEMP_FAILURE_RETRY(expression) \
  3. (__extension__ \
  4. ({ long int __result; \
  5. do __result = (long int) (expression); \
  6. while (__result == -1L && errno == EINTR); \
  7. __result; }))
  8. #endif