From: Michael Beck Date: Mon, 27 Sep 2004 14:51:34 +0000 (+0000) Subject: More doxygen comments X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=f125f8215c7400173fcb025cb7a05880c990c577;p=libfirm More doxygen comments [r3968] --- diff --git a/ir/adt/pset.h b/ir/adt/pset.h index a922b3a9f..059005f53 100644 --- a/ir/adt/pset.h +++ b/ir/adt/pset.h @@ -45,8 +45,9 @@ typedef int (*pset_cmp_fun) (const void *elt, const void *key); /** * Creates a new pset. * - * @param func the compare function of this pset - * @param slots number of initial slots + * @param func The compare function of this pset. + * @param slots Initial number of collision chains. I.e., #slots + * different keys can be hashed without collisions. * * @returns * created pset @@ -56,6 +57,8 @@ pset *new_pset (pset_cmp_fun func, int slots); /** * Deletes a pset. * + * @param pset the pset + * * @note * This does NOT delete the elements of this pset, just it's pointers! */ diff --git a/ir/adt/set.h b/ir/adt/set.h index a97ca622f..cba43c08f 100644 --- a/ir/adt/set.h +++ b/ir/adt/set.h @@ -59,8 +59,9 @@ typedef int (*set_cmp_fun) (const void *elt, const void *key, size_t size); /** * Creates a new set. * - * @param func the compare function of this set - * @param slots number of initial slots + * @param func The compare function of this set. + * @param slots Initial number of collision chains. I.e., #slots + * different keys can be hashed without collisions. * * @returns * created set