From 33776f4955fa52ae3e4dc87ab6ac484a3ebc9a71 Mon Sep 17 00:00:00 2001 From: hunt Date: Mon, 21 Mar 2005 21:47:54 +0000 Subject: *** empty log message *** --- runtime/docs/html/map_8h-source.html | 54 ++++++++++++++++++------------------ 1 file changed, 27 insertions(+), 27 deletions(-) (limited to 'runtime/docs/html/map_8h-source.html') diff --git a/runtime/docs/html/map_8h-source.html b/runtime/docs/html/map_8h-source.html index 9a49236c..7ecc890f 100644 --- a/runtime/docs/html/map_8h-source.html +++ b/runtime/docs/html/map_8h-source.html @@ -5,7 +5,7 @@
Intro | Functions | Defines | Enumerations | Enumeration Values
- +

map.h

Go to the documentation of this file.
00001 /* -*- linux-c -*- */
 00002 #include <linux/types.h>
 00003 
@@ -17,12 +17,12 @@
 00009 } stat;
 00010 
 00011 union key_data {
-00012         long val;
-00013         char *str;
+00012         long val;
+00013         char *str;
 00014 };
 00015 
-00016 enum keytype { NONE, LONG, STR } __attribute__ ((packed));
-00017 enum valtype { INT64, STAT, STRING, END };
+00016 enum keytype { NONE, LONG, STR } __attribute__ ((packed));
+00017 enum valtype { INT64, STAT, STRING, END };
 00018 
 00019 /* all map nodes have the following structure */
 00020 struct map_node {
@@ -30,63 +30,63 @@
 00022         struct hlist_node hnode;
 00023         union key_data key1;
 00024         union key_data key2;
-00025         enum keytype key1type;
-00026         enum keytype key2type;
+00025         enum keytype key1type;
+00026         enum keytype key2type;
 00027 };
 00028 
 00029 /* specific map nodes with data attached */
 00030 struct map_node_int64 {
 00031         struct map_node n;
-00032         int64_t val;
+00032         int64_t val;
 00033 };
 00034 
 00035 struct map_node_str {
 00036         struct map_node n;
-00037         char *str;
+00037         char *str;
 00038 };
 00039 
 00040 struct map_node_stat {
 00041         struct map_node n;
-00042         stat stats;
+00042         stat stats;
 00043 };
 00044 
 00045 struct map_root {
 00046         /* type of the values stored in the array */
-00047         enum valtype type;
+00047         enum valtype type;
 00048 
 00049         /* maximum number of elements allowed in the array. */
-00050         int maxnum;
+00050         int maxnum;
 00051 
 00052         /* current number of elements */
-00053         int num;
+00053         int num;
 00054 
 00055         /* when more than maxnum elements, wrap or discard */
-00056         int no_wrap;
+00056         int no_wrap;
 00057 
 00058         /* linked list of current entries */
-00059         struct list_head head;
+00059         struct list_head head;
 00060 
 00061         /* pool of unused entries.  Used only when entries are statically allocated */
 00062         /* at startup. */
-00063         struct list_head pool;
+00063         struct list_head pool;
 00064 
 00065         /* saved key entry for lookups */
-00066         struct map_node *key;
+00066         struct map_node *key;
 00067 
 00068         /* this is the creation data saved between the key functions and the */
 00069         /* set/get functions */
-00070         u_int8_t create;
-00071         enum keytype c_key1type;
-00072         enum keytype c_key2type;
-00073         struct hlist_head *c_keyhead;
-00074         union key_data c_key1;
-00075         union key_data c_key2;
+00070         u_int8_t create;
+00071         enum keytype c_key1type;
+00072         enum keytype c_key2type;
+00073         struct hlist_head *c_keyhead;
+00074         union key_data c_key1;
+00075         union key_data c_key2;
 00076 
 00077         /* the hash table for this array */
-00078         struct hlist_head hashes[HASH_TABLE_SIZE];
+00078         struct hlist_head hashes[HASH_TABLE_SIZE];
 00079 
 00080         /* pointer to allocated memory space */
-00081         void *membuf;
+00081         void *membuf;
 00082 };
 00083 
 00084 typedef struct map_root *MAP;
@@ -139,8 +139,8 @@
 00139   for (ptr = (typeof(ptr))_stp_map_start(map); ptr; \
 00140        ptr = (typeof(ptr))_stp_map_iter (map, (struct map_node *)ptr))
 00141 
-

Generated on Wed Mar 9 13:21:28 2005 for SystemTap by  +
Generated on Mon Mar 21 13:29:45 2005 for SystemTap by  -doxygen 1.3.9.1
+doxygen 1.4.1
-- cgit