X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace%2Fgraph%2Fnotification-stream.h;h=ac9ee65b2e007236ff073a23530893fca14e01d8;hb=b19ff26f04df428047676dd736bd7cc9473906fe;hp=14ffe32742d4462842a43eafff720a20fa263726;hpb=c5b9b4417bedfbec9b5dd23b8395ccdd4eeffc44;p=babeltrace.git diff --git a/include/babeltrace/graph/notification-stream.h b/include/babeltrace/graph/notification-stream.h index 14ffe327..ac9ee65b 100644 --- a/include/babeltrace/graph/notification-stream.h +++ b/include/babeltrace/graph/notification-stream.h @@ -24,37 +24,34 @@ * SOFTWARE. */ -#include +/* For bt_notification, bt_self_notification_iterator, bt_stream */ +#include #ifdef __cplusplus extern "C" { #endif -struct bt_notification; -struct bt_self_notification_iterator; -struct bt_stream; - extern -struct bt_notification *bt_notification_stream_beginning_create( - struct bt_self_notification_iterator *notification_iterator, - struct bt_stream *stream); +bt_notification *bt_notification_stream_beginning_create( + bt_self_notification_iterator *notification_iterator, + bt_stream *stream); extern -struct bt_notification *bt_notification_stream_end_create( - struct bt_self_notification_iterator *notification_iterator, - struct bt_stream *stream); +bt_notification *bt_notification_stream_end_create( + bt_self_notification_iterator *notification_iterator, + bt_stream *stream); -extern struct bt_stream *bt_notification_stream_beginning_borrow_stream( - struct bt_notification *notification); +extern bt_stream *bt_notification_stream_beginning_borrow_stream( + bt_notification *notification); extern void bt_notification_stream_beginning_set_default_clock_value( - struct bt_notification *notif, uint64_t value_cycles); + bt_notification *notif, uint64_t value_cycles); -extern struct bt_stream *bt_notification_stream_end_borrow_stream( - struct bt_notification *notification); +extern bt_stream *bt_notification_stream_end_borrow_stream( + bt_notification *notification); extern void bt_notification_stream_end_set_default_clock_value( - struct bt_notification *notif, uint64_t value_cycles); + bt_notification *notif, uint64_t value_cycles); #ifdef __cplusplus }