X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Ftrace-ust.h;h=0dac36b213f5d76f7f82c4c1b8c677e5d3b79c0e;hp=03f37abaa6900723422fca8762bf5ea893d020a7;hb=d9bf3ca437aa801c9364ca06b1083f83c6f8ef30;hpb=71c1a1b96afa1f19e0831d45c5a008b7d39b3cd3 diff --git a/src/bin/lttng-sessiond/trace-ust.h b/src/bin/lttng-sessiond/trace-ust.h index 03f37abaa..0dac36b21 100644 --- a/src/bin/lttng-sessiond/trace-ust.h +++ b/src/bin/lttng-sessiond/trace-ust.h @@ -79,7 +79,7 @@ struct ltt_ust_domain_global { /* UST session */ struct ltt_ust_session { - int id; /* Unique identifier of session */ + uint64_t id; /* Unique identifier of session */ int start_trace; struct ltt_ust_domain_global domain_global; /* UID/GID of the user owning the session */ @@ -155,7 +155,7 @@ 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(unsigned int session_id); +struct ltt_ust_session *trace_ust_create_session(uint64_t 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);