~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/hash.c

  • Committer: Monty Taylor
  • Date: 2008-11-07 00:15:51 UTC
  • mto: This revision was merged to the branch mainline in revision 579.
  • Revision ID: monty@inaugust.com-20081107001551-8vxb6sf1ti0i5p09
Cleaned up some headers for PCH.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
_hash_init(HASH *hash,uint32_t growth_size, const CHARSET_INFO * const charset,
58
58
           uint32_t size, size_t key_offset, size_t key_length,
59
59
           hash_get_key get_key,
60
 
           void (*free_element)(void*),uint32_t flags CALLER_INFO_PROTO)
 
60
           void (*free_element)(void*),uint32_t flags)
61
61
{
62
62
  hash->records=0;
63
63
  if (my_init_dynamic_array_ci(&hash->array, sizeof(HASH_LINK), size,