add end of stream notification
[babeltrace.git] / include / babeltrace / plugin / notification / notification.h
index 487c737e8739d0b49d4b9a77d2d792c9d1555b3e..4636f229126f6f14386637aa7c38af0c1cc5a7b4 100644 (file)
@@ -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. */
 };
This page took 0.047352 seconds and 4 git commands to generate.