5c8905517aadee42f95afec1d92df7530fa7ec79
2 * BabelTrace - Converter
6 * Copyright (c) 2010 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #include <ctf/ctf-types.h>
28 * Type hash table contains the registered types. Type registration is typically
29 * performed by a type plugin.
30 * TODO: support plugin unload (unregistration of types).
34 struct type_class
*ctf_lookup_type(GQuark qname
)
36 return g_hash_table_lookup(type_classes
,
37 (gconstpointer
) (unsigned long) qname
)
40 int ctf_register_type(struct type_class
*type_class
)
42 if (ctf_lookup_type_class(type_class
->name
))
45 g_hash_table_insert(type_classes
,
46 (gconstpointer
) (unsigned long) type_class
->name
,
51 int ctf_init_types(void)
53 type_classes
= g_hash_table_new_full(g_direct_hash
, g_direct_equal
,
60 int ctf_finalize_types(void)
62 g_hash_table_destroy(type_classes
);
This page took 0.029908 seconds and 4 git commands to generate.