cleanup: function attribute 'always_inline'
[lttng-ust.git] / liblttng-ust / lttng-ust-comm.c
index 7e587499efd2b14ce484a54a232fde6e3a5f4401..748417ab3e366a2edb827bd8668e4bdd5cb806ac 100644 (file)
@@ -2067,7 +2067,11 @@ void lttng_ust_libc_wrapper_malloc_init(void)
  * sessiond monitoring thread: monitor presence of global and per-user
  * sessiond by polling the application common named pipe.
  */
-void __attribute__((constructor)) lttng_ust_init(void)
+static
+void lttng_ust_init(void)
+       __attribute__((constructor));
+static
+void lttng_ust_init(void)
 {
        struct timespec constructor_timeout;
        sigset_t sig_all_blocked, orig_parent_mask;
@@ -2275,7 +2279,11 @@ void lttng_ust_cleanup(int exiting)
        }
 }
 
-void __attribute__((destructor)) lttng_ust_exit(void)
+static
+void lttng_ust_exit(void)
+       __attribute__((destructor));
+static
+void lttng_ust_exit(void)
 {
        int ret;
 
This page took 0.023736 seconds and 4 git commands to generate.