X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=lib%2Fcallbacks.c;h=fa212c9191e95fc5f5371201bf7883d22d9df05e;hp=aae8196ffeb5508947b2c947932dd389299b1e9c;hb=20d0dcf9609dcd28aebe87c167d6600ddbe668d1;hpb=e8c92a62cb474a1bb64bcbfff47c17291751b959 diff --git a/lib/callbacks.c b/lib/callbacks.c index aae8196f..fa212c91 100644 --- a/lib/callbacks.c +++ b/lib/callbacks.c @@ -22,8 +22,10 @@ #include #include #include +#include #include #include +#include #include static @@ -60,8 +62,8 @@ struct bt_dependencies *babeltrace_dependencies_create(const char *first, ...) * bt_iter_add_callback: Add a callback to iterator. */ int bt_iter_add_callback(struct bt_iter *iter, - bt_event_name event, void *private_data, int flags, - enum bt_cb_ret (*callback)(struct bt_ctf_data *ctf_data, + bt_intern_str event, void *private_data, int flags, + enum bt_cb_ret (*callback)(struct bt_ctf_event *ctf_data, void *private_data), struct bt_dependencies *depends, struct bt_dependencies *weak_depends, @@ -176,7 +178,7 @@ void process_callbacks(struct bt_iter *iter, struct bt_callback *cb; int i; enum bt_cb_ret ret; - struct bt_ctf_data ctf_data; + struct bt_ctf_event ctf_data; ctf_data.event = extract_ctf_stream_event(stream); ctf_data.stream = stream; @@ -204,7 +206,7 @@ void process_callbacks(struct bt_iter *iter, if (!bt_stream_cb || !bt_stream_cb->per_id_callbacks) goto end; - if (stream->event_id > bt_stream_cb->per_id_callbacks->len) + if (stream->event_id >= bt_stream_cb->per_id_callbacks->len) goto end; bt_chain = &g_array_index(bt_stream_cb->per_id_callbacks, struct bt_callback_chain, stream->event_id);