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