X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Futils.cpp;h=20b2232888195296fd0f279ba41ab17238a0ae6b;hb=3c3390532736cfb5198f863d0d2b218e21fcf76d;hp=5b33a8df8a313320b6b4338e7686330a5b41b65a;hpb=ff9fe3137fc1aec6e18ebbf7c218907698206e7d;p=lttng-tools.git diff --git a/src/bin/lttng-sessiond/utils.cpp b/src/bin/lttng-sessiond/utils.cpp index 5b33a8df8..20b223288 100644 --- a/src/bin/lttng-sessiond/utils.cpp +++ b/src/bin/lttng-sessiond/utils.cpp @@ -16,8 +16,6 @@ #include "snapshot.h" #include "lttng-sessiond.h" -int the_ht_cleanup_pipe[2] = {-1, -1}; - /* * Write to writable pipe used to notify a thread. */ @@ -38,31 +36,6 @@ int notify_thread_pipe(int wpipe) return (int) ret; } -void ht_cleanup_push(struct lttng_ht *ht) -{ - ssize_t ret; - int fd = the_ht_cleanup_pipe[1]; - - if (!ht) { - return; - } - if (fd < 0) - return; - ret = lttng_write(fd, &ht, sizeof(ht)); - if (ret < sizeof(ht)) { - PERROR("write ht cleanup pipe %d", fd); - if (ret < 0) { - ret = -errno; - } - goto error; - } - - /* All good. Don't send back the write positive ret value. */ - ret = 0; -error: - LTTNG_ASSERT(!ret); -} - int loglevels_match(int a_loglevel_type, int a_loglevel_value, int b_loglevel_type, int b_loglevel_value, int loglevel_all_type) {