Automatic enum value are generated using the last value and
incrementing it. Having backward compat assignation before the
LTTNG_ERR_NR would end up overwriting the error string since the
LTTNG_ERR_NR value would be LTTNG_ERR_PID_NOT_TRACKED + 1.
Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Change-Id: I4076866a28961fa49eed018e8249d2cd72979a84
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
LTTNG_ERR_USER_NOT_FOUND = 160, /* User not found. */
LTTNG_ERR_GROUP_NOT_FOUND = 161, /* Group not found. */
+ /* MUST be last element of the manually-assigned section of the enum */
+ LTTNG_ERR_NR,
+
+ /* Backward-compatibility assignments */
LTTNG_ERR_PID_TRACKED = LTTNG_ERR_ID_TRACKED, /* Backward compat alias to LTTNG_ERR_ID_TRACKED */
LTTNG_ERR_PID_NOT_TRACKED = LTTNG_ERR_ID_NOT_TRACKED, /* Backward compat alias to LTTNG_ERR_ID_NOT_TRACKED */
-
- /* MUST be last element */
- LTTNG_ERR_NR, /* Last element */
};
/*