~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/thr_lock.h

  • Committer: Monty Taylor
  • Date: 2009-01-30 00:53:14 UTC
  • mto: (779.3.19 devel)
  • mto: This revision was merged to the branch mainline in revision 823.
  • Revision ID: mordred@inaugust.com-20090130005314-3ufwrbqxnxu2aevi
Replaced gen_lex_hash with gperf. Yay for no more building tools to build source!!!

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
  void *status_param;                   /* Param to status functions */
69
69
} THR_LOCK_DATA;
70
70
 
 
71
/* A helper type for transactional locking. */
 
72
struct st_table_lock_info
 
73
{
 
74
  enum thr_lock_type lock_type;
 
75
  int           lock_timeout;
 
76
  bool          lock_transactional;
 
77
};
 
78
 
71
79
struct st_lock_list {
72
80
  THR_LOCK_DATA *data,**last;
73
81
};