X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Ftrace-ust.h;h=dcb45c2373d802fa92d04adbedd393d3d310b6ad;hb=a1dcaf0fdbfbaf02ef38886b556c3d37e4458fdc;hp=92d6aaaf416d5af7c5c1f5184854c99d2c30fbf6;hpb=1624d5b7ba86633d36f3a5c86ea1df5d308c4360;p=lttng-tools.git diff --git a/src/bin/lttng-sessiond/trace-ust.h b/src/bin/lttng-sessiond/trace-ust.h index 92d6aaaf4..dcb45c237 100644 --- a/src/bin/lttng-sessiond/trace-ust.h +++ b/src/bin/lttng-sessiond/trace-ust.h @@ -54,7 +54,6 @@ struct ltt_ust_channel { uint64_t id; /* unique id per session. */ unsigned int enabled; char name[LTTNG_UST_SYM_NAME_LEN]; - char pathname[PATH_MAX]; struct lttng_ust_channel_attr attr; struct lttng_ht *ctx; struct lttng_ht *events; @@ -82,7 +81,6 @@ struct ltt_ust_domain_global { struct ltt_ust_session { int id; /* Unique identifier of session */ int start_trace; - char pathname[PATH_MAX]; struct ltt_ust_domain_global domain_global; /* UID/GID of the user owning the session */ uid_t uid; @@ -155,15 +153,15 @@ struct ltt_ust_channel *trace_ust_find_channel_by_name(struct lttng_ht *ht, /* * Create functions malloc() the data structure. */ -struct ltt_ust_session *trace_ust_create_session(char *path, - unsigned int session_id); -struct ltt_ust_channel *trace_ust_create_channel(struct lttng_channel *attr, - char *path); +struct ltt_ust_session *trace_ust_create_session(unsigned int session_id); +struct ltt_ust_channel *trace_ust_create_channel(struct lttng_channel *attr); struct ltt_ust_event *trace_ust_create_event(struct lttng_event *ev, struct lttng_filter_bytecode *filter); struct ltt_ust_metadata *trace_ust_create_metadata(char *path); struct ltt_ust_context *trace_ust_create_context( struct lttng_event_context *ctx); +void trace_ust_delete_channel(struct lttng_ht *ht, + struct ltt_ust_channel *channel); /* * Destroy functions free() the data structure and remove from linked list if @@ -194,14 +192,12 @@ struct ltt_ust_channel *trace_ust_find_channel_by_name(struct lttng_ht *ht, } static inline -struct ltt_ust_session *trace_ust_create_session(char *path, - unsigned int session_id) +struct ltt_ust_session *trace_ust_create_session(unsigned int session_id) { return NULL; } static inline -struct ltt_ust_channel *trace_ust_create_channel(struct lttng_channel *attr, - char *path) +struct ltt_ust_channel *trace_ust_create_channel(struct lttng_channel *attr) { return NULL; } @@ -247,6 +243,12 @@ static inline struct ltt_ust_event *trace_ust_find_event(struct lttng_ht *ht, { return NULL; } +static inline +void trace_ust_delete_channel(struct lttng_ht *ht, + struct ltt_ust_channel *channel) +{ + return; +} #endif /* HAVE_LIBLTTNG_UST_CTL */