Fix: recvmsg should handle EINTR
[lttng-ust.git] / libringbuffer / shm_types.h
index e92c0af03d3d99e61f92b07684536161a116f4bf..08226bdd214cae5e65ae0a4af6b26bc57078d3bf 100644 (file)
@@ -19,8 +19,9 @@ struct shm_object {
        int shm_fd;     /* shm fd */
        int wait_fd[2]; /* fd for wait/wakeup */
        char *memory_map;
+       int is_shadow;
        size_t memory_map_size;
-       size_t allocated_len;
+       uint64_t allocated_len;
 };
 
 struct shm_object_table {
@@ -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.031551 seconds and 4 git commands to generate.