Adapt plugin system to use unified reference counting
[babeltrace.git] / include / babeltrace / plugin / notification / iterator.h
index 9c968f52f9fdf37428072f3492c67dcefbbdb22f..c958c5827b3989f5db8e23385480592b3bb8aca5 100644 (file)
@@ -42,7 +42,7 @@ struct bt_notification_iterator;
 enum bt_notification_iterator_status {
        /** Invalid arguments. */
        /* -22 for compatibility with -EINVAL */
-       BT_NOTIFICATION_ITERATOR_STATUS_EINVAL = -22,
+       BT_NOTIFICATION_ITERATOR_STATUS_INVAL = -22,
 
        /** End of trace. */
        BT_NOTIFICATION_ITERATOR_STATUS_EOT = -3,
@@ -77,7 +77,7 @@ enum bt_notification_iterator_seek_type {
  * This functions will <b>not</b> advance the cursor's position.
  * The returned notification's reference count is already incremented.
  *
- * @param Iterator     Iterator instance
+ * @param iterator     Iterator instance
  * @returns            Returns a bt_notification instance
  *
  * @see bt_notification_put()
@@ -116,31 +116,9 @@ bt_notification_iterator_next(struct bt_notification_iterator *iterator);
  * @see bt_notification_iterator_get_notification()
  */
 extern enum bt_notification_iterator_status *bt_notification_iterator_seek(
-               struct bt_notification_iterator *iterator,
-               int whence,
+               struct bt_notification_iterator *iterator, int whence,
                int64_t time);
 
-/**
- * Increments the reference count of \p iterator.
- *
- * @param iterator     Iterator of which to increment the reference count
- *
- * @see bt_notification_iterator_put()
- */
-extern void bt_notification_iterator_get(
-               struct bt_notification_iterator *iterator);
-
-/**
- * Decrements the reference count of \p iterator, destroying it when this
- * count reaches 0.
- *
- * @param iterator     Iterator of which to decrement the reference count
- *
- * @see bt_notification_iterator_get()
- */
-extern void bt_notification_iterator_put(
-               struct bt_notification_iterator *iterator);
-
 #ifdef __cplusplus
 }
 #endif
This page took 0.026815 seconds and 4 git commands to generate.