X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace%2Fplugin%2Fnotification%2Fnotification.h;h=4636f229126f6f14386637aa7c38af0c1cc5a7b4;hb=043e202066787ef4d63c587375c1d58753245d82;hp=487c737e8739d0b49d4b9a77d2d792c9d1555b3e;hpb=6cdbfd7a28f6e3ead89ccb4359fe4062c5f0a94c;p=babeltrace.git diff --git a/include/babeltrace/plugin/notification/notification.h b/include/babeltrace/plugin/notification/notification.h index 487c737e..4636f229 100644 --- a/include/babeltrace/plugin/notification/notification.h +++ b/include/babeltrace/plugin/notification/notification.h @@ -48,23 +48,26 @@ enum bt_notification_type { /** Event delivery notification, see event.h */ BT_NOTIFICATION_TYPE_EVENT = 1, - /** New stream packet notification, see packet.h */ - BT_NOTIFICATION_TYPE_NEW_PACKET = 2, + /** Start of stream packet notification, see packet.h */ + BT_NOTIFICATION_TYPE_PACKET_START = 2, /** End of stream packet notification, see packet.h */ - BT_NOTIFICATION_TYPE_END_PACKET = 3, + BT_NOTIFICATION_TYPE_PACKET_END = 3, + + /** End of stream packet notification, see stream.h */ + BT_NOTIFICATION_TYPE_STREAM_END = 4, /** New trace notification, see model.h */ - BT_NOTIFICATION_TYPE_NEW_TRACE = 4, + BT_NOTIFICATION_TYPE_NEW_TRACE = 5, /** New stream class notification, see model.h */ - BT_NOTIFICATION_TYPE_NEW_STREAM_CLASS = 5, + BT_NOTIFICATION_TYPE_NEW_STREAM_CLASS = 6, /** New event class notification, see model.h */ - BT_NOTIFICATION_TYPE_NEW_EVENT_CLASS = 6, + BT_NOTIFICATION_TYPE_NEW_EVENT_CLASS = 7, /** End of trace notification, see eot.h */ - BT_NOTIFICATION_TYPE_END_OF_TRACE = 7, + BT_NOTIFICATION_TYPE_END_OF_TRACE = 8, BT_NOTIFICATION_TYPE_NR, /* Not part of ABI. */ };