X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fadt%2Fpset.h;h=059005f5392dc87efb733cf1ef3132ad5420c2c7;hb=2d09549421b49587d4680a94dab277646e9fef44;hp=a922b3a9f4d6d48bf82fa31af0b38c3ae0867689;hpb=b751adfd19f36b83ed09d00deec0602ffeba0909;p=libfirm 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! */