struct lttng_ust_calibrate;
int ustctl_calibrate(int sock, struct lttng_ust_calibrate *calibrate);
-/* TODO: object_data send/recv between sessiond and consumer */
-
/*
* Map channel shm_handle and add streams. Typically performed by the
* consumer to map the objects into its memory space.
struct shm_handle;
struct lib_ring_buffer;
+void *ustctl_get_mmap_base(struct shm_handle *handle,
+ struct lib_ring_buffer *buf);
+
/* Open/close stream buffers for read */
struct lib_ring_buffer *ustctl_open_stream_read(struct shm_handle *handle,
int cpu);
* For mmap mode, operate on the current packet (between get/put or
* get_next/put_next).
*/
+void *ustctl_get_mmap_base(struct shm_handle *handle,
+ struct lib_ring_buffer *buf);
int ustctl_get_mmap_read_offset(struct shm_handle *handle,
struct lib_ring_buffer *buf, unsigned long *off);
int ustctl_get_subbuf_size(struct shm_handle *handle,
/* For mmap mode, readable without "get" operation */
+void *ustctl_get_mmap_base(struct shm_handle *handle,
+ struct lib_ring_buffer *buf)
+{
+ return shmp(handle, buf->backend.memory_map);
+}
+
/* returns the length to mmap. */
int ustctl_get_mmap_len(struct shm_handle *handle,
struct lib_ring_buffer *buf,