1QB_HDB_DESTROY(3) libqb Programmer's Manual QB_HDB_DESTROY(3)
2
3
4
6 qb_hdb_destroy - Destroy a handle database.
7
9 #include <qb/qbhdb.h>
10
11 void qb_hdb_destroy(
12 struct qb_hdb *hdb
13 );
14
16 hdb the database to destroy.
17
20 struct qb_hdb {
21 uint32_t handle_count;
22 qb_array_t handles;
23 uint32_t iterator;
24 void (*destructor)(void *);
25 uint32_t first_run;
26 };
27
29 qb_hdb_handle_get(3), qb_hdb_iterator_reset(3),
30 qb_hdb_handle_create(3), qb_hdb_handle_destroy(3),
31 qb_hdb_handle_refcount_get(3), qb_hdb_iterator_next(3),
32 qb_hdb_nocheck_convert(3), qb_hdb_create(3), qb_hdb_base_convert(3),
33 qb_hdb_handle_get_always(3), qb_hdb_handle_put(3)
34
36 Copyright (C) 2010-2020 Red Hat, Inc. All rights reserved.
37
38
39
40LIBQB 2020-07-30 QB_HDB_DESTROY(3)