2 * SPDX-License-Identifier: MIT
4 * Copyright (c) 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
8 #include <babeltrace2-ctf-writer/object.h>
10 void *bt_ctf_object_get_ref(void *obj
)
12 if (G_UNLIKELY(!obj
)) {
16 bt_ctf_object_get_no_null_check(obj
);
22 void bt_ctf_object_put_ref(void *obj
)
24 if (G_UNLIKELY(!obj
)) {
28 bt_ctf_object_put_no_null_check(obj
);
This page took 0.029111 seconds and 4 git commands to generate.