diff options
author | Harshavardhana <fharshav@redhat.com> | 2011-11-21 16:28:47 -0800 |
---|---|---|
committer | Vijay Bellur <vijay@gluster.com> | 2011-12-06 02:02:02 -0800 |
commit | 254fbfd92d4088c97ddde79a37b4e08e80c8eff3 (patch) | |
tree | 229df761122889997a14a4cc310095a438e2f3ff /libglusterfs/src/dict.h | |
parent | 2b64c93c9f7f69fab506bdfca163a2805a2ea46c (diff) |
cluster/distribute: Assert checks at known locations
and new function dict_get_ptr_and_len().
Change-Id: I653a1cc8123baa36d750250d02721aa98b196f38
BUG: 3158
Signed-off-by: Harshavardhana <fharshav@redhat.com>
Reviewed-on: http://review.gluster.com/744
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vijay@gluster.com>
Diffstat (limited to 'libglusterfs/src/dict.h')
-rw-r--r-- | libglusterfs/src/dict.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libglusterfs/src/dict.h b/libglusterfs/src/dict.h index c51c7d8f7..121f84be5 100644 --- a/libglusterfs/src/dict.h +++ b/libglusterfs/src/dict.h @@ -175,6 +175,7 @@ GF_MUST_CHECK int dict_set_double (dict_t *this, char *key, double val); GF_MUST_CHECK int dict_set_static_ptr (dict_t *this, char *key, void *ptr); GF_MUST_CHECK int dict_get_ptr (dict_t *this, char *key, void **ptr); +GF_MUST_CHECK int dict_get_ptr_and_len (dict_t *this, char *key, void **ptr, int *len); GF_MUST_CHECK int dict_set_ptr (dict_t *this, char *key, void *ptr); GF_MUST_CHECK int dict_set_dynptr (dict_t *this, char *key, void *ptr, size_t size); |