aboutsummaryrefslogtreecommitdiff
path: root/proc.h
diff options
context:
space:
mode:
authorPetr Machata <pmachata@redhat.com>2012-03-28 02:05:36 +0200
committerPetr Machata <pmachata@redhat.com>2012-04-19 01:31:41 +0200
commitef7fa37f2d0b949b5afb1f326187e4f023d86c25 (patch)
tree33592025e2cde4eb8f2000653fa4b13e750e0d12 /proc.h
parent9282254e29896366ea354b930b06f9defebbd041 (diff)
downloadltrace-ef7fa37f2d0b949b5afb1f326187e4f023d86c25.tar.gz
Add CBS_FAIL to enum callback_status
Diffstat (limited to 'proc.h')
-rw-r--r--proc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/proc.h b/proc.h
index 949bbe7..84241bf 100644
--- a/proc.h
+++ b/proc.h
@@ -38,6 +38,8 @@ struct library;
enum callback_status {
CBS_STOP, /* The iteration should stop. */
CBS_CONT, /* The iteration should continue. */
+ CBS_FAIL, /* There was an error. The iteration should stop
+ * and return error. */
};
struct event_handler {