On 17/08/2018 07:18, Emilio G. Cota wrote: > + > +#define qemu_rec_trymutex_lock(m) ({ \ > + QemuRecMutexTrylockFunc _f; \ > + _f = atomic_read(&qemu_rec_mutex_trylock_func); \ > + _f(m, __FILE__, __LINE__); \ > + }) > +
Obvious typo (found by clang's -Winfinite-recursion, how it detects it is left as an exercise to the reader; it's not obvious and I like this clang warning even though the first impression is "why would you need it"), fixed while applying. Paolo