On 07/03/20 17:55, Philippe Mathieu-Daudé wrote:
TFR() is defined in include/qemu-common.h: #define TFR(expr) do { if ((expr) != -1) break; } while (errno == EINTR)Ah ha, thank you. It figures, the one place I didn't look. I assumed that QEMU would know how to find its own things so TFR must be something external.
- Michele