Code base to fix the print errors in UST (v4)
[ust.git] / libustconsumer / libustconsumer.c
index c51b1066b84e138158c150e73f4a41947687bea7..ef54fe807352bf5be8242b8bf0e205fe1aaa26c4 100644 (file)
@@ -353,6 +353,10 @@ struct buffer_info *connect_buffer(struct ustconsumer_instance *instance, pid_t
                goto close_fifo;
        }
 
+       /* Set subbuffer's information */
+       buf->subbuf_size_order = get_count_order(buf->subbuf_size);
+       buf->alloc_size = buf->subbuf_size * buf->n_subbufs;
+
        /* attach memory */
        buf->mem = shmat(buf->shmid, NULL, 0);
        if(buf->mem == (void *) 0) {
This page took 0.022797 seconds and 4 git commands to generate.