Fix 32-bit type mismatch
[lttng-ust.git] / libringbuffer / shm_types.h
index e92c0af03d3d99e61f92b07684536161a116f4bf..52348443f4b99549d49ba1ee3dc06007239d94f7 100644 (file)
@@ -19,7 +19,8 @@ struct shm_object {
        int shm_fd;     /* shm fd */
        int wait_fd[2]; /* fd for wait/wakeup */
        char *memory_map;
-       size_t memory_map_size;
+       int is_shadow;
+       uint64_t memory_map_size;
        size_t allocated_len;
 };
 
@@ -29,7 +30,7 @@ struct shm_object_table {
        struct shm_object objects[];
 };
 
-struct shm_handle {
+struct lttng_ust_shm_handle {
        struct shm_object_table *table;
        DECLARE_SHMP(struct channel, chan);
        /*
This page took 0.023172 seconds and 4 git commands to generate.