From 71184a6aa45a5f6996ed127c804a344c53595341 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Mon, 29 Nov 2004 14:18:44 +0000 Subject: [PATCH] more doxygen docu added [r4497] --- ir/adt/set.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/ir/adt/set.c b/ir/adt/set.c index fffe229f9..5c10bd278 100644 --- a/ir/adt/set.c +++ b/ir/adt/set.c @@ -79,30 +79,30 @@ typedef struct element { - struct element *chain; /* for chaining Elements */ + struct element *chain; /**< for chaining Elements */ MANGLEP (entry) entry; } Element, *Segment; struct SET { - unsigned p; /* Next bucket to be split */ - unsigned maxp; /* upper bound on p during expansion */ - unsigned nkey; /* current # keys */ - unsigned nseg; /* current # segments */ + unsigned p; /**< Next bucket to be split */ + unsigned maxp; /**< upper bound on p during expansion */ + unsigned nkey; /**< current # keys */ + unsigned nseg; /**< current # segments */ Segment *dir[DIRECTORY_SIZE]; - MANGLEP(cmp_fun) cmp; /* function comparing entries */ + MANGLEP(cmp_fun) cmp; /**< function comparing entries */ unsigned iter_i, iter_j; - Element *iter_tail; /* non-NULL while iterating over elts */ + Element *iter_tail; /**< non-NULL while iterating over elts */ #ifdef PSET - Element *free_list; /* list of free Elements */ + Element *free_list; /**< list of free Elements */ #endif - struct obstack obst; /* obstack for allocation all data */ + struct obstack obst; /**< obstack for allocation all data */ #ifdef STATS int naccess, ncollision, ndups; int max_chain_len; #endif #ifdef DEBUG - const char *tag; + const char *tag; /**< an optionally tag for distinguishing sets */ #endif }; -- 2.20.1