Re: [PATCH v2 03/14] tools/rv: Fix exit status when monitor execution fails
From: Nam Cao
Date: Mon May 18 2026 - 04:40:10 EST
Gabriele Monaco <gmonaco@xxxxxxxxxx> writes:
> + exit(run <= 0);
Probably better to stick to the C standard:
exit(run > 0 ? EXIT_SUCCESS : EXIT_FAILURE)
but whatever.
Reviewed-by: Nam Cao <namcao@xxxxxxxxxxxxx>