Fix: session ID signess to uin64_t in sessiond
[lttng-tools.git] / src / bin / lttng-sessiond / session.h
index 63b5a068d033462f4d1167b46c0a78d9aa42cfd8..7b927efe1103aa8950c16530f86a3ec5582497e8 100644 (file)
@@ -47,7 +47,7 @@ struct ltt_session_list {
         * Session unique ID generator. The session list lock MUST be
         * upon update and read of this counter.
         */
-       unsigned int next_uuid;
+       uint64_t next_uuid;
 
        /* Linked list head */
        struct cds_list_head head;
@@ -69,7 +69,7 @@ struct ltt_session {
        pthread_mutex_t lock;
        struct cds_list_head list;
        int enabled;    /* enabled/started flag */
-       unsigned int id;                /* session unique identifier */
+       uint64_t id;            /* session unique identifier */
        /* UID/GID of the user owning the session */
        uid_t uid;
        gid_t gid;
This page took 0.0248429999999999 seconds and 5 git commands to generate.