X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Fhealth.h;h=82cfc87dfccb6f36797b8dc31e4a5c87bdf9cf9d;hp=b348be5f0144e85b4309624c747026c0090d5e3c;hb=8782cc7477fae212607b9fd6395a4b2e2d3357ed;hpb=8809eec0bb55b03862cb1eb128eb39d50104c258 diff --git a/src/bin/lttng-sessiond/health.h b/src/bin/lttng-sessiond/health.h index b348be5f0..82cfc87df 100644 --- a/src/bin/lttng-sessiond/health.h +++ b/src/bin/lttng-sessiond/health.h @@ -18,9 +18,12 @@ #ifndef _HEALTH_H #define _HEALTH_H -#include +#include #include +#include +#include #include +#include /* * These are the value added to the current state depending of the position in @@ -31,9 +34,10 @@ #define HEALTH_IS_IN_POLL(x) ((x) & HEALTH_POLL_VALUE) +struct health_app; + enum health_flags { - HEALTH_EXIT = (1U << 0), - HEALTH_ERROR = (1U << 1), + HEALTH_ERROR = (1U << 0), }; struct health_state { @@ -49,71 +53,64 @@ struct health_state { */ unsigned long current; /* progress counter, updated atomically */ enum health_flags flags; /* other flags, updated atomically */ + int type; /* Indicates the nature of the thread. */ + /* Node of the global TLS state list. */ + struct cds_list_head node; }; -/* Health state counters for the client command thread */ -extern struct health_state health_thread_cmd; - -/* Health state counters for the application management thread */ -extern struct health_state health_thread_app_manage; - -/* Health state counters for the application registration thread */ -extern struct health_state health_thread_app_reg; - -/* Health state counters for the kernel thread */ -extern struct health_state health_thread_kernel; +/* Declare TLS health state. */ +extern DECLARE_URCU_TLS(struct health_state, health_state); /* - * Update current counter by 1 to indicate that the thread entered or - * left a blocking state caused by a poll(). + * Update current counter by 1 to indicate that the thread entered or left a + * blocking state caused by a poll(). If the counter's value is not an even + * number (meaning a code execution flow), an assert() is raised. */ -static inline void health_poll_update(struct health_state *state) +static inline void health_poll_entry(void) { - assert(state); - uatomic_add(&state->current, HEALTH_POLL_VALUE); -} + /* Code MUST be in code execution state which is an even number. */ + assert(!(uatomic_read(&URCU_TLS(health_state).current) + & HEALTH_POLL_VALUE)); -/* - * Update current counter by 2 indicates progress in execution of a - * thread. - */ -static inline void health_code_update(struct health_state *state) -{ - assert(state); - uatomic_add(&state->current, HEALTH_CODE_VALUE); + uatomic_add(&URCU_TLS(health_state).current, HEALTH_POLL_VALUE); } /* - * Set health "exit" flag. + * Update current counter by 1 indicating the exit of a poll or blocking call. + * If the counter's value is not an odd number (a poll execution), an assert() + * is raised. */ -static inline void health_exit(struct health_state *state) +static inline void health_poll_exit(void) { - assert(state); - uatomic_or(&state->flags, HEALTH_EXIT); + /* Code MUST be in poll execution state which is an odd number. */ + assert(uatomic_read(&URCU_TLS(health_state).current) + & HEALTH_POLL_VALUE); + + uatomic_add(&URCU_TLS(health_state).current, HEALTH_POLL_VALUE); } /* - * Set health "error" flag. + * Update current counter by 2 indicates progress in execution of a + * thread. */ -static inline void health_error(struct health_state *state) +static inline void health_code_update(void) { - assert(state); - uatomic_or(&state->flags, HEALTH_ERROR); + uatomic_add(&URCU_TLS(health_state).current, HEALTH_CODE_VALUE); } /* - * Init health state. + * Set health "error" flag. */ -static inline void health_init(struct health_state *state) +static inline void health_error(void) { - assert(state); - state->last = 0; - state->last_time.tv_sec = 0; - state->last_time.tv_nsec = 0; - uatomic_set(&state->current, 0); - uatomic_set(&state->flags, 0); + uatomic_or(&URCU_TLS(health_state).flags, HEALTH_ERROR); } -int health_check_state(struct health_state *state); +struct health_app *health_app_create(int nr_types); +void health_app_destroy(struct health_app *ha); +int health_check_state(struct health_app *ha, int type); +void health_register(struct health_app *ha, int type); +void health_unregister(struct health_app *ha); +void health_init(struct health_app *ha); #endif /* _HEALTH_H */