Android-cuttlefish cvd tool
Macros
temp_failure_retry.h File Reference
#include <errno.h>
Include dependency graph for temp_failure_retry.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define TEMP_FAILURE_RETRY(exp)
 

Macro Definition Documentation

◆ TEMP_FAILURE_RETRY

#define TEMP_FAILURE_RETRY (   exp)
Value:
({ \
__typeof__(exp) _rc; \
do { \
_rc = (exp); \
} while (_rc == -1 && errno == EINTR); \
_rc; \
})