diff options
author | hunt <hunt> | 2005-10-26 08:29:38 +0000 |
---|---|---|
committer | hunt <hunt> | 2005-10-26 08:29:38 +0000 |
commit | af5dd76bca996577262e447fd8bff1bd0df30db7 (patch) | |
tree | 488419840e6841a1dcb022553cb33f6eccbbb3f5 /runtime/map-str.c | |
parent | d7c99876fec8867918d9f4f808edca985eb1fd67 (diff) | |
download | systemtap-steved-af5dd76bca996577262e447fd8bff1bd0df30db7.tar.gz systemtap-steved-af5dd76bca996577262e447fd8bff1bd0df30db7.tar.xz systemtap-steved-af5dd76bca996577262e447fd8bff1bd0df30db7.zip |
2005-10-26 Martin Hunt <hunt@redhat.com>
* map.c (_new_map_create, _new_map_del_node, _new_map_del_node,
_new_map_set_int64, _new_map_set_str,_new_map_get_int64,
_new_map_get_str, _new_map_get_stat, _new_map_set_stat):
New internal functions for the new API.
* map-int.c (__stp_map_set_int64): Modify to return an
error code.
* map-stat.c (_stp_map_add_stat): Ditto.
* map-str (_stp_map_set_str): Ditto.
* Doxyfile: Remove predefines NEED_STRING_VALS,
NEED_STATS, NEED_INT64.
* map-keys.c: Ditto.
* list.c (_stp_list_new): Ditto. Also set map->list.
* map-values.c: Ditto.
Diffstat (limited to 'runtime/map-str.c')
-rw-r--r-- | runtime/map-str.c | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/runtime/map-str.c b/runtime/map-str.c index e5e5b5e4..96eb5b5c 100644 --- a/runtime/map-str.c +++ b/runtime/map-str.c @@ -20,27 +20,27 @@ void str_add(void *dest, char *val) dst[len + len1] = 0; } -void __stp_map_set_str (MAP map, char *val, int add) +int __stp_map_set_str (MAP map, char *val, int add) { struct map_node *m; if (map == NULL) - return; + return -2; if (map->create) { - if (val == 0 && !map->no_wrap) - return; + if (val == 0 && !map->list) + return 0; m = __stp_map_create (map); if (!m) - return; + return -1; /* set the value */ //dbug ("m=%lx offset=%lx\n", (long)m, (long)map->data_offset); str_copy((void *)((long)m + map->data_offset), val); } else { if (map->key == NULL) - return; + return -2; if (val) { if (add) @@ -52,6 +52,7 @@ void __stp_map_set_str (MAP map, char *val, int add) _stp_map_key_del(map); } } + return 0; } /** Set the current element's value to a string. @@ -62,6 +63,7 @@ void __stp_map_set_str (MAP map, char *val, int add) * is set for the map, this function does nothing. * @param map * @param str String containing new value. + * @returns \li \c 0 on success \li \c -1 on overflow \li \c -2 on bad map or key * @sa _stp_map_set() * @ingroup map_set */ @@ -75,6 +77,7 @@ void __stp_map_set_str (MAP map, char *val, int add) * is set for the map, this function does nothing. * @param map * @param val String containing value to append. + * @returns \li \c 0 on success \li \c -1 on overflow \li \c -2 on bad map or key * @ingroup map_set */ #define _stp_map_add_str(map,val) __stp_map_set_str(map,val,1) @@ -107,6 +110,7 @@ char *_stp_map_get_str (MAP map) * is set for the map, this function does nothing. * @param map * @param str String containing new value. + * @returns 0 on success, -1 on error. * @sa _stp_map_set() * @ingroup map_set */ |