1 #ifndef _BABELTRACE_COMPAT_GLIB_H
2 #define _BABELTRACE_COMPAT_GLIB_H
5 * Copyright (C) 2015 Michael Jeanson <mjeanson@efficios.com>
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28 #if GLIB_CHECK_VERSION(2,31,8)
30 static inline gboolean
31 bt_g_hash_table_contains(GHashTable
*hash_table
, gconstpointer key
)
33 return g_hash_table_contains(hash_table
, key
);
38 static inline gboolean
39 bt_g_hash_table_contains(GHashTable
*hash_table
, gconstpointer key
)
44 return g_hash_table_lookup_extended(hash_table
, key
, &orig_key
,
51 #if GLIB_CHECK_VERSION(2,29,16)
53 static inline GPtrArray
*
54 bt_g_ptr_array_new_full(guint reserved_size
,
55 GDestroyNotify element_free_func
)
57 return g_ptr_array_new_full(reserved_size
, element_free_func
);
62 static inline GPtrArray
*
63 bt_g_ptr_array_new_full(guint reserved_size
,
64 GDestroyNotify element_free_func
)
68 array
= g_ptr_array_sized_new(reserved_size
);
72 g_ptr_array_set_free_func(array
, element_free_func
);
78 #endif /* _BABELTRACE_COMPAT_GLIB_H */