X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Fthread.hpp;h=a1e390a09b085ee2c56ce1f90d513349b1f30123;hb=17f013d167f010cd0166f869af424141605a992b;hp=cc1cbd13d209f1bde11d96bb0cfc28dd48bba9b8;hpb=e665dfbce25215d5ec77ff03a279c7163b337db1;p=lttng-tools.git diff --git a/src/bin/lttng-sessiond/thread.hpp b/src/bin/lttng-sessiond/thread.hpp index cc1cbd13d..a1e390a09 100644 --- a/src/bin/lttng-sessiond/thread.hpp +++ b/src/bin/lttng-sessiond/thread.hpp @@ -31,10 +31,10 @@ using lttng_thread_cleanup_cb = void (*)(void *); * The shutdown and cleanup callbacks are optional. */ struct lttng_thread *lttng_thread_create(const char *name, - lttng_thread_entry_point entry, - lttng_thread_shutdown_cb shutdown, - lttng_thread_cleanup_cb cleanup, - void *thread_data); + lttng_thread_entry_point entry, + lttng_thread_shutdown_cb shutdown, + lttng_thread_cleanup_cb cleanup, + void *thread_data); bool lttng_thread_get(struct lttng_thread *thread); void lttng_thread_put(struct lttng_thread *thread); @@ -57,6 +57,6 @@ bool lttng_thread_shutdown(struct lttng_thread *thread); * * Returns once all orphaned threads have been joined. */ -void lttng_thread_list_shutdown_orphans(void); +void lttng_thread_list_shutdown_orphans(); #endif /* THREAD_H */