X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace2%2Fvalue.h;h=c37c090a67a5755e61b3f413fba60be45acdf499;hb=c6fe8c4012c19ba7ab7fc16853a464e0381d6290;hp=9fd0e95f950bfc3f99dc80382bc79a9d0194576c;hpb=959b3d46dc042fe1df34592f528f866dd200f395;p=babeltrace.git diff --git a/include/babeltrace2/value.h b/include/babeltrace2/value.h index 9fd0e95f..c37c090a 100644 --- a/include/babeltrace2/value.h +++ b/include/babeltrace2/value.h @@ -2,7 +2,7 @@ #define BABELTRACE2_VALUE_H /* - * Copyright (c) 2015-2018 Philippe Proulx + * 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 @@ -45,17 +45,17 @@ extern bt_value *bt_value_bool_create_init(bt_bool val); extern void bt_value_bool_set(bt_value *bool_obj, bt_bool val); -extern bt_value *bt_value_unsigned_integer_create(void); +extern bt_value *bt_value_integer_unsigned_create(void); -extern bt_value *bt_value_unsigned_integer_create_init(uint64_t val); +extern bt_value *bt_value_integer_unsigned_create_init(uint64_t val); -extern void bt_value_unsigned_integer_set(bt_value *integer_obj, uint64_t val); +extern void bt_value_integer_unsigned_set(bt_value *integer_obj, uint64_t val); -extern bt_value *bt_value_signed_integer_create(void); +extern bt_value *bt_value_integer_signed_create(void); -extern bt_value *bt_value_signed_integer_create_init(int64_t val); +extern bt_value *bt_value_integer_signed_create_init(int64_t val); -extern void bt_value_signed_integer_set(bt_value *integer_obj, int64_t val); +extern void bt_value_integer_signed_set(bt_value *integer_obj, int64_t val); extern bt_value *bt_value_real_create(void); @@ -130,7 +130,7 @@ typedef bt_bool (* bt_value_map_foreach_entry_func)(const char *key, typedef enum bt_value_map_foreach_entry_status { BT_VALUE_MAP_FOREACH_ENTRY_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR, BT_VALUE_MAP_FOREACH_ENTRY_STATUS_OK = __BT_FUNC_STATUS_OK, - BT_VALUE_MAP_FOREACH_ENTRY_STATUS_CANCELED = __BT_FUNC_STATUS_CANCELED, + BT_VALUE_MAP_FOREACH_ENTRY_STATUS_INTERRUPTED = __BT_FUNC_STATUS_INTERRUPTED, } bt_value_map_foreach_entry_status; extern bt_value_map_foreach_entry_status bt_value_map_foreach_entry(