X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Fthread.hpp;fp=src%2Fbin%2Flttng-sessiond%2Fthread.hpp;h=cc1cbd13d209f1bde11d96bb0cfc28dd48bba9b8;hp=530f72a8e446e3a9c1a2b188ccaaf415129b7625;hb=e665dfbce25215d5ec77ff03a279c7163b337db1;hpb=28ab034a2c3582d07d3423d2d746731f87d3969f diff --git a/src/bin/lttng-sessiond/thread.hpp b/src/bin/lttng-sessiond/thread.hpp index 530f72a8e..cc1cbd13d 100644 --- a/src/bin/lttng-sessiond/thread.hpp +++ b/src/bin/lttng-sessiond/thread.hpp @@ -13,10 +13,10 @@ struct lttng_thread; /* Main function of the new thread. */ -typedef void *(*lttng_thread_entry_point)(void *); +using lttng_thread_entry_point = void *(*) (void *); /* Callback invoked to initiate the shutdown a thread. */ -typedef bool (*lttng_thread_shutdown_cb)(void *); +using lttng_thread_shutdown_cb = bool (*)(void *); /* * Callback invoked to clean-up the thread data. @@ -24,7 +24,7 @@ typedef bool (*lttng_thread_shutdown_cb)(void *); * race between a use by the "thread shutdown callback" and * a use by the thread itself. */ -typedef void (*lttng_thread_cleanup_cb)(void *); +using lttng_thread_cleanup_cb = void (*)(void *); /* * Returns a reference to the newly-created thread.