X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace2%2Ftrace-ir%2Fclock-class-const.h;h=6316f83f4e2e3d28ad2089a596560ce8ddfb399a;hb=1cda4ff4025e4b3f7bd2a861baa51d2113c4cbf9;hp=a06241c22942bf089377a17a84c5be99ccf72c2c;hpb=3fadfbc0c91f82c46bd36e6e0657ea93570c9db1;p=babeltrace.git diff --git a/include/babeltrace2/trace-ir/clock-class-const.h b/include/babeltrace2/trace-ir/clock-class-const.h index a06241c2..6316f83f 100644 --- a/include/babeltrace2/trace-ir/clock-class-const.h +++ b/include/babeltrace2/trace-ir/clock-class-const.h @@ -1,9 +1,8 @@ -#ifndef BABELTRACE_TRACE_IR_CLOCK_CLASS_CONST_H -#define BABELTRACE_TRACE_IR_CLOCK_CLASS_CONST_H +#ifndef BABELTRACE2_TRACE_IR_CLOCK_CLASS_CONST_H +#define BABELTRACE2_TRACE_IR_CLOCK_CLASS_CONST_H /* - * Copyright 2017-2018 Philippe Proulx - * Copyright 2013, 2014 Jérémie Galarneau + * Copyright (c) 2010-2019 EfficiOS Inc. and Linux Foundation * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -22,25 +21,22 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - * - * The Common Trace Format (CTF) Specification is available at - * http://www.efficios.com/ctf */ +#ifndef __BT_IN_BABELTRACE_H +# error "Please include instead." +#endif + #include -/* For bt_bool, bt_uuid, bt_clock_class */ #include #ifdef __cplusplus extern "C" { #endif -typedef enum bt_clock_class_status { - BT_CLOCK_CLASS_STATUS_OK = 0, - BT_CLOCK_CLASS_STATUS_NOMEM = -12, - BT_CLOCK_CLASS_STATUS_OVERFLOW = -75, -} bt_clock_class_status; +extern const bt_value *bt_clock_class_borrow_user_attributes_const( + const bt_clock_class *clock_class); extern const char *bt_clock_class_get_name( const bt_clock_class *clock_class); @@ -63,7 +59,13 @@ extern bt_bool bt_clock_class_origin_is_unix_epoch( extern bt_uuid bt_clock_class_get_uuid( const bt_clock_class *clock_class); -extern bt_clock_class_status bt_clock_class_cycles_to_ns_from_origin( +typedef enum bt_clock_class_cycles_to_ns_from_origin_status { + BT_CLOCK_CLASS_CYCLES_TO_NS_FROM_ORIGIN_STATUS_OVERFLOW_ERROR = __BT_FUNC_STATUS_OVERFLOW_ERROR, + BT_CLOCK_CLASS_CYCLES_TO_NS_FROM_ORIGIN_STATUS_OK = __BT_FUNC_STATUS_OK, +} bt_clock_class_cycles_to_ns_from_origin_status; + +extern bt_clock_class_cycles_to_ns_from_origin_status +bt_clock_class_cycles_to_ns_from_origin( const bt_clock_class *clock_class, uint64_t cycles, int64_t *ns_from_origin); @@ -88,4 +90,4 @@ extern void bt_clock_class_put_ref(const bt_clock_class *clock_class); } #endif -#endif /* BABELTRACE_TRACE_IR_CLOCK_CLASS_CONST_H */ +#endif /* BABELTRACE2_TRACE_IR_CLOCK_CLASS_CONST_H */