X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=include%2Flttng%2Fust-events.h;h=1a548f1a2f04a2d7e87aca1632b1f7efbc774ae5;hb=7e50e956e4e84bc668335a926e2ba44659be1088;hp=251c0fb655f1167e6899269a344ac82eaddda686;hpb=5a8ebacfa816fc73737c517155c9ee26a8dc9761;p=lttng-ust.git diff --git a/include/lttng/ust-events.h b/include/lttng/ust-events.h index 251c0fb6..1a548f1a 100644 --- a/include/lttng/ust-events.h +++ b/include/lttng/ust-events.h @@ -21,13 +21,14 @@ #include #include -#include #include #include #include #include #include +#define LTTNG_UST_UUID_LEN 16 + struct ltt_channel; struct ltt_session; struct lttng_ust_lib_ring_buffer_ctx; @@ -355,7 +356,7 @@ struct ltt_channel { /* Channel ID, available for consumer too */ unsigned int id; /* Copy of session UUID for consumer (availability through shm) */ - uuid_t uuid; /* Trace session unique ID */ + unsigned char uuid[LTTNG_UST_UUID_LEN]; /* Trace session unique ID */ }; struct ltt_session { @@ -368,7 +369,7 @@ struct ltt_session { struct cds_list_head wildcards; /* Wildcard list head */ struct cds_list_head list; /* Session list */ unsigned int free_chan_id; /* Next chan ID to allocate */ - uuid_t uuid; /* Trace session unique ID */ + unsigned char uuid[LTTNG_UST_UUID_LEN]; /* Trace session unique ID */ unsigned int metadata_dumped:1; };