Ignore:
Timestamp:
2012-11-07T21:00:02Z (13 years ago)
Author:
Adam Hraska <adam.hraska+hos@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
dcb0751
Parents:
fc89e32 (diff), 94795812 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merged with mainline.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/adt/hash_table.c

    rfc89e32 r33c2952  
    6262
    6363
    64 static size_t round_up_size(size_t size);
    65 static bool alloc_table(size_t bucket_cnt, list_t **pbuckets);
    66 static void clear_items(hash_table_t *h);
    67 static void resize(hash_table_t *h, size_t new_bucket_cnt);
    68 static void grow_if_needed(hash_table_t *h);
    69 static void shrink_if_needed(hash_table_t *h);
     64static size_t round_up_size(size_t);
     65static bool alloc_table(size_t, list_t **);
     66static void clear_items(hash_table_t *);
     67static void resize(hash_table_t *, size_t);
     68static void grow_if_needed(hash_table_t *);
     69static void shrink_if_needed(hash_table_t *);
    7070
    7171/* Dummy do nothing callback to invoke in place of remove_callback == NULL. */
Note: See TracChangeset for help on using the changeset viewer.