1QB_MAP_NOTIFY_DEL(3) libqb Programmer's Manual QB_MAP_NOTIFY_DEL(3)
2
3
4
6 qb_map_notify_del - Delete a notifier from the map.
7
9 #include <qb/qbmap.h>
10
11 int32_t qb_map_notify_del(
12 qb_map_t *m,
13 const char *key,
14 qb_map_notify_fn fn,
15 int32_t events
16 );
17
19 m the map instance
20
21 key the key (or prefix) to attach the notification to.
22
23 fn the callback
24
25 events the type of events to register for.
26
28 0 success
29
30 -errno failure
31
33 the key,fn and events must match those you added.
34
36 qb_trie_dump(3), qb_map_iter_create(3), qb_skiplist_create(3),
37 qb_map_put(3), qb_map_count_get(3), qb_map_foreach(3),
38 qb_map_pref_iter_create(3), qb_map_iter_next(3), qb_map_get(3),
39 qb_map_destroy(3), qb_hashtable_create(3), qb_map_iter_free(3),
40 qb_map_notify_add(3), qb_trie_create(3), qb_map_notify_del_2(3),
41 qb_map_rm(3)
42
44 Copyright (C) 2010-2020 Red Hat, Inc. All rights reserved.
45
46
47
48LIBQB 2020-07-30 QB_MAP_NOTIFY_DEL(3)