summaryrefslogtreecommitdiffstats
path: root/runtime/map.doc
diff options
context:
space:
mode:
authorhunt <hunt>2005-06-29 19:53:05 +0000
committerhunt <hunt>2005-06-29 19:53:05 +0000
commit05785c11dfdeaf11d98e7d65486a3870d00b5206 (patch)
tree1aca52ed84f664a315881a71970af912623cdd30 /runtime/map.doc
parent126a29f4cc293f4497b8796c4fa1625236554067 (diff)
downloadsystemtap-steved-05785c11dfdeaf11d98e7d65486a3870d00b5206.tar.gz
systemtap-steved-05785c11dfdeaf11d98e7d65486a3870d00b5206.tar.xz
systemtap-steved-05785c11dfdeaf11d98e7d65486a3870d00b5206.zip
2005-06-29 Martin Hunt <hunt@redhat.com>
* map-values.c (_stp_map_add_int64): Fix docs. * map-str.c: Fix some docs * map.c: Ditto. * map.doc: Ditto.
Diffstat (limited to 'runtime/map.doc')
-rw-r--r--runtime/map.doc23
1 files changed, 0 insertions, 23 deletions
diff --git a/runtime/map.doc b/runtime/map.doc
index 6a1585b7..29d740f6 100644
--- a/runtime/map.doc
+++ b/runtime/map.doc
@@ -108,17 +108,6 @@ MAP _stp_map_new_KEY1__ (int num_entries, HSTAT_LINEAR, int start, int stop, int
*/
void _stp_map_set_str (MAP map, char *val) {}
-/** Set the current element's value to a String.
- * This sets the current element's value to a String. The map must have been created
- * to hold strings using <i>_stp_map_new_(xxx, STRING)</i>
- *
- * If the element doesn't exist, it is created. If no current element (key)
- * is set for the map, this function does nothing.
- * @param map
- * @param str String containing new value.
- * @sa _stp_map_set()
- */
-void _stp_map_set_string (MAP map, String str){}
/** Appends a C string to the current element's value
* This appends a C string to the current element's value. The map must have been created
@@ -131,18 +120,6 @@ void _stp_map_set_string (MAP map, String str){}
* @sa _stp_map_set()
*/
void _stp_map_add_str (MAP map, char *val) {}
-
-/** Adds an int64 to the current element's value.
- * This adds an int64 to the current element's value. The map must have been created
- * to hold int64s using <i>_stp_map_new_(xxx, INT64)</i>
- *
- * If the element doesn't exist, it is created. If no current element (key)
- * is set for the map, this function does nothing.
- * @param map
- * @param val value
- * @sa _stp_map_set_int64()
- */
-void _stp_map_add_int64 (MAP map, int64_t val) {}
/** @} end of map_set group*/
/** @defgroup map_get Getting the Values from Maps