diff options
author | Nick Alcock <nick.alcock@oracle.com> | 2020-06-02 21:31:45 +0100 |
---|---|---|
committer | Nick Alcock <nick.alcock@oracle.com> | 2020-07-22 17:57:41 +0100 |
commit | 809f6eb3321edb91fcc96b1f8353dbfe2f762fa7 (patch) | |
tree | 0dfd5c1aac3b5580c483d03984ce49bbb01282f2 /libctf/ChangeLog | |
parent | 469e75b621f6ee0b235d5dbe7566483d356d178d (diff) | |
download | gdb-809f6eb3321edb91fcc96b1f8353dbfe2f762fa7.zip gdb-809f6eb3321edb91fcc96b1f8353dbfe2f762fa7.tar.gz gdb-809f6eb3321edb91fcc96b1f8353dbfe2f762fa7.tar.bz2 |
libctf: add new dynhash functions
Future commits will use these.
ctf_dynhash_elements: count elements in a dynhash
ctf_dynhash_lookup_kv: look up and return pointers to the original key
and value in a dynhash (the only way of getting
a reference to the original key)
ctf_dynhash_iter_find: iterate until an item is found, then return its
key
ctf_dynhash_cinsert: insert a const key / value into a dynhash (a thim
wrapper in a new header dedicated to inline
functions).
As with the rest of ctf_dynhash, this is not public API. No impact
on existing callers is expected.
libctf/
* ctf-inlines.h: New file.
* ctf-impl.h: Include it.
(ctf_hash_iter_find_f): New typedef.
(ctf_dynhash_elements): New.
(ctf_dynhash_lookup_kv): New.
(ctf_dynhash_iter_find): New.
* ctf-hash.c (ctf_dynhash_lookup_kv): New.
(ctf_traverse_find_cb_arg_t): New.
(ctf_hashtab_traverse_find): New.
(ctf_dynhash_iter_find): New.
(ctf_dynhash_elements): New.
Diffstat (limited to 'libctf/ChangeLog')
-rw-r--r-- | libctf/ChangeLog | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libctf/ChangeLog b/libctf/ChangeLog index 642ed3f..a7a31e7 100644 --- a/libctf/ChangeLog +++ b/libctf/ChangeLog @@ -1,5 +1,19 @@ 2020-07-22 Nick Alcock <nick.alcock@oracle.com> + * ctf-inlines.h: New file. + * ctf-impl.h: Include it. + (ctf_hash_iter_find_f): New typedef. + (ctf_dynhash_elements): New. + (ctf_dynhash_lookup_kv): New. + (ctf_dynhash_iter_find): New. + * ctf-hash.c (ctf_dynhash_lookup_kv): New. + (ctf_traverse_find_cb_arg_t): New. + (ctf_hashtab_traverse_find): New. + (ctf_dynhash_iter_find): New. + (ctf_dynhash_elements): New. + +2020-07-22 Nick Alcock <nick.alcock@oracle.com> + * ctf-impl.h [!__GNUC__] (__extension__): Define to nothing. 2020-07-22 Nick Alcock <nick.alcock@oracle.com> |