Commit 9bf942f3 authored by Wander Lairson Costa's avatar Wander Lairson Costa Committed by Tomas Glozar
Browse files

rtla: Use standard exit codes for result enum



The result enum defines custom values for PASSED, ERROR, and FAILED.
These values correspond to standard exit codes EXIT_SUCCESS and
EXIT_FAILURE.

Update the enum to use the standard macros EXIT_SUCCESS and
EXIT_FAILURE to improve readability and adherence to standard C
practices.

The FAILED value is implicitly assigned EXIT_FAILURE + 1, so there
is no need to assign an explicit value.

Signed-off-by: default avatarWander Lairson Costa <wander@redhat.com>
Link: https://lore.kernel.org/r/20260106133655.249887-9-wander@redhat.com


Signed-off-by: default avatarTomas Glozar <tglozar@redhat.com>
parent 7e9dfccf
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@
#include <time.h>
#include <sched.h>
#include <stdbool.h>
#include <stdlib.h>

/*
 * '18446744073709551615\0'
@@ -88,7 +89,7 @@ __attribute__((__warn_unused_result__)) int strtoi(const char *s, int *res);
#define ns_to_per(total, part) ((part * 100) / (double)total)

enum result {
	PASSED = 0, /* same as EXIT_SUCCESS */
	ERROR = 1,  /* same as EXIT_FAILURE, an error in arguments */
	FAILED = 2, /* test hit the stop tracing condition */
	PASSED	= EXIT_SUCCESS,
	ERROR	= EXIT_FAILURE,
	FAILED, /* test hit the stop tracing condition */
};