uint64_t *packet_size);
int ustctl_get_stream_id(struct ustctl_consumer_stream *stream,
uint64_t *stream_id);
+int ustctl_get_current_timestamp(struct ustctl_consumer_stream *stream,
+ uint64_t *ts);
/* event registry management */
return client_cb->stream_id(buf, handle, stream_id);
}
+int ustctl_get_current_timestamp(struct ustctl_consumer_stream *stream,
+ uint64_t *ts)
+{
+ struct lttng_ust_client_lib_ring_buffer_client_cb *client_cb;
+ struct lttng_ust_lib_ring_buffer *buf = stream->buf;
+ struct lttng_ust_shm_handle *handle = stream->chan->chan->handle;
+
+ if (!stream || !ts)
+ return -EINVAL;
+ client_cb = get_client_cb(buf, handle);
+ if (!client_cb || !client_cb->current_timestamp)
+ return -ENOSYS;
+ return client_cb->current_timestamp(buf, handle, ts);
+}
+
/*
* Returns 0 on success, negative error value on error.
*/
int (*stream_id) (struct lttng_ust_lib_ring_buffer *buf,
struct lttng_ust_shm_handle *handle,
uint64_t *stream_id);
+ int (*current_timestamp) (struct lttng_ust_lib_ring_buffer *buf,
+ struct lttng_ust_shm_handle *handle,
+ uint64_t *ts);
};
#endif /* _LTTNG_RB_CLIENT_H */
return 0;
}
+static int client_current_timestamp(struct lttng_ust_lib_ring_buffer *buf,
+ struct lttng_ust_shm_handle *handle,
+ uint64_t *ts)
+{
+ struct channel *chan;
+
+ chan = shmp(handle, handle->chan);
+ *ts = client_ring_buffer_clock_read(chan);
+
+ return 0;
+}
+
static const
struct lttng_ust_client_lib_ring_buffer_client_cb client_cb = {
.parent = {
.content_size = client_content_size,
.packet_size = client_packet_size,
.stream_id = client_stream_id,
+ .current_timestamp = client_current_timestamp,
};
static const struct lttng_ust_lib_ring_buffer_config client_config = {