Implement ctf.lttng-live component
[babeltrace.git] / plugins / ctf / common / notif-iter / notif-iter.c
index 496f95a4222ebdc2e977d0fab866733e4ae3e0b4..bc20f8814b1de423158fa04961a9134d42f4a599 100644 (file)
@@ -2386,6 +2386,10 @@ enum bt_ctf_notif_iter_status bt_ctf_notif_iter_get_next_notification(
 
        while (true) {
                status = handle_state(notit);
+               if (status == BT_CTF_NOTIF_ITER_STATUS_AGAIN) {
+                       PDBG("Medium operation reported \"try again later\"");
+                       goto end;
+               }
                if (status != BT_CTF_NOTIF_ITER_STATUS_OK) {
                        if (status == BT_CTF_NOTIF_ITER_STATUS_EOF) {
                                PDBG("Medium operation reported end of stream\n");
This page took 0.022949 seconds and 4 git commands to generate.