~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/thr_lock.cc

  • Committer: Brian Aker
  • Date: 2010-11-27 18:27:58 UTC
  • mfrom: (1948.2.15 catalogs)
  • Revision ID: brian@tangent.org-20101127182758-dmlrboyhsazqa1tm
Merge in additiona fixes, includes a number of bug fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
 
93
93
uint64_t max_write_lock_count= UINT64_MAX;
94
94
 
95
 
static void thr_multi_unlock(THR_LOCK_DATA **data,uint32_t count);
 
95
void thr_multi_unlock(THR_LOCK_DATA **data,uint32_t count);
96
96
 
97
97
/*
98
98
** For the future (now the thread specific cond is alloced by my_pthread.c)
631
631
 
632
632
  /* free all locks */
633
633
 
634
 
static void thr_multi_unlock(THR_LOCK_DATA **data,uint32_t count)
 
634
void thr_multi_unlock(THR_LOCK_DATA **data,uint32_t count)
635
635
{
636
636
  THR_LOCK_DATA **pos,**end;
637
637