X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=tests%2Fregression%2Ftools%2Fnotification%2Fsessiond_testpoints.cpp;h=3baea63230dcfc27cf3d85bea7d113155295ed15;hb=28ab034a2c3582d07d3423d2d746731f87d3969f;hp=f0517ed14b911f9e62fc2bbf2ccd2d2e0036f76e;hpb=52e345b9ac912d033c2a2c25a170a01cf209839d;p=lttng-tools.git diff --git a/tests/regression/tools/notification/sessiond_testpoints.cpp b/tests/regression/tools/notification/sessiond_testpoints.cpp index f0517ed14..3baea6323 100644 --- a/tests/regression/tools/notification/sessiond_testpoints.cpp +++ b/tests/regression/tools/notification/sessiond_testpoints.cpp @@ -8,34 +8,35 @@ #include #include -#include #include -#include -#include +#include + #include #include -#include + #include +#include +#include #include +#include static char *pause_pipe_path; static struct lttng_pipe *pause_pipe; -static int *notifier_notif_consumption_state;; +static int *notifier_notif_consumption_state; +; int lttng_opt_verbose; int lttng_opt_mi; int lttng_opt_quiet; -static -void __attribute__((destructor)) pause_pipe_fini(void) +static void __attribute__((destructor)) pause_pipe_fini(void) { int ret; if (pause_pipe_path) { ret = unlink(pause_pipe_path); if (ret) { - PERROR("Failed to unlink pause pipe: path = %s", - pause_pipe_path); + PERROR("Failed to unlink pause pipe: path = %s", pause_pipe_path); } } @@ -49,8 +50,7 @@ int __testpoint_sessiond_thread_notification(void) int ret = 0; const char *pause_pipe_path_prefix; - pause_pipe_path_prefix = lttng_secure_getenv( - "NOTIFIER_PAUSE_PIPE_PATH"); + pause_pipe_path_prefix = lttng_secure_getenv("NOTIFIER_PAUSE_PIPE_PATH"); if (!pause_pipe_path_prefix) { ret = -1; goto end; @@ -66,8 +66,8 @@ int __testpoint_sessiond_thread_notification(void) } DBG("Creating pause pipe at %s", pause_pipe_path); - pause_pipe = lttng_pipe_named_open(pause_pipe_path, - S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP, O_NONBLOCK); + pause_pipe = lttng_pipe_named_open( + pause_pipe_path, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP, O_NONBLOCK); if (!pause_pipe) { ERR("Failed to create pause pipe at %s", pause_pipe_path); ret = -1; @@ -105,7 +105,7 @@ int __testpoint_sessiond_handle_notifier_event_pipe(void) if (value_read) { *notifier_notif_consumption_state = !!value; DBG("Message received on pause pipe: %s data consumption", - *notifier_notif_consumption_state ? "paused" : "resumed"); + *notifier_notif_consumption_state ? "paused" : "resumed"); } end: return ret;