From 1d7c2b390fd7cf8b1e0b45b6d7bd3219111a6ff0 Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Thu, 6 Apr 2017 00:54:01 -0400 Subject: [PATCH] Add BT_NOTIFICATION_ITERATOR_STATUS_AGAIN status MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Philippe Proulx Signed-off-by: Jérémie Galarneau --- include/babeltrace/graph/notification-iterator.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/babeltrace/graph/notification-iterator.h b/include/babeltrace/graph/notification-iterator.h index 8cf2a062..56a2e0e0 100644 --- a/include/babeltrace/graph/notification-iterator.h +++ b/include/babeltrace/graph/notification-iterator.h @@ -40,6 +40,8 @@ struct bt_notification_iterator; * Status code. Errors are always negative. */ enum bt_notification_iterator_status { + /** Try again. */ + BT_NOTIFICATION_ITERATOR_STATUS_AGAIN = 2, /** No more notifications to be delivered. */ BT_NOTIFICATION_ITERATOR_STATUS_END = 1, /** No error, okay. */ -- 2.34.1