Rename shm_handle to lttng_ust_shm_handle
[ust.git] / include / ust / ringbuffer-config.h
index b3fbeef58cfa86b863a45fcef52ce2db82da7e0e..12bdc8695993a7b01f4e93e1b7f79718f8cf344c 100644 (file)
@@ -22,7 +22,7 @@ struct lib_ring_buffer;
 struct channel;
 struct lib_ring_buffer_config;
 struct lib_ring_buffer_ctx;
-struct shm_handle *handle;
+struct lttng_ust_shm_handle *handle;
 
 /*
  * Ring buffer client callbacks. Only used by slow path, never on fast path.
@@ -44,24 +44,24 @@ struct lib_ring_buffer_client_cb {
        size_t (*subbuffer_header_size) (void);
        void (*buffer_begin) (struct lib_ring_buffer *buf, u64 tsc,
                              unsigned int subbuf_idx,
-                             struct shm_handle *handle);
+                             struct lttng_ust_shm_handle *handle);
        void (*buffer_end) (struct lib_ring_buffer *buf, u64 tsc,
                            unsigned int subbuf_idx, unsigned long data_size,
-                           struct shm_handle *handle);
+                           struct lttng_ust_shm_handle *handle);
 
        /* Optional callbacks (can be set to NULL) */
 
        /* Called at buffer creation/finalize */
        int (*buffer_create) (struct lib_ring_buffer *buf, void *priv,
                              int cpu, const char *name,
-                             struct shm_handle *handle);
+                             struct lttng_ust_shm_handle *handle);
        /*
         * Clients should guarantee that no new reader handle can be opened
         * after finalize.
         */
        void (*buffer_finalize) (struct lib_ring_buffer *buf,
                                 void *priv, int cpu,
-                                struct shm_handle *handle);
+                                struct lttng_ust_shm_handle *handle);
 
        /*
         * Extract header length, payload length and timestamp from event
@@ -72,7 +72,7 @@ struct lib_ring_buffer_client_cb {
                            struct channel *chan, struct lib_ring_buffer *buf,
                            size_t offset, size_t *header_len,
                            size_t *payload_len, u64 *timestamp,
-                           struct shm_handle *handle);
+                           struct lttng_ust_shm_handle *handle);
 };
 
 /*
@@ -174,7 +174,7 @@ struct lib_ring_buffer_ctx {
        /* input received by lib_ring_buffer_reserve(), saved here. */
        struct channel *chan;           /* channel */
        void *priv;                     /* client private data */
-       struct shm_handle *handle;      /* shared-memory handle */
+       struct lttng_ust_shm_handle *handle;    /* shared-memory handle */
        size_t data_size;               /* size of payload */
        int largest_align;              /*
                                         * alignment of the largest element
@@ -212,7 +212,7 @@ static inline
 void lib_ring_buffer_ctx_init(struct lib_ring_buffer_ctx *ctx,
                              struct channel *chan, void *priv,
                              size_t data_size, int largest_align,
-                             int cpu, struct shm_handle *handle)
+                             int cpu, struct lttng_ust_shm_handle *handle)
 {
        ctx->chan = chan;
        ctx->priv = priv;
This page took 0.023175 seconds and 4 git commands to generate.