~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/thr_lock.h

  • Committer: Brian Aker
  • Date: 2009-06-08 02:42:24 UTC
  • mfrom: (1054.1.6 merge)
  • Revision ID: brian@gaz-20090608024224-zlff1bpq62r8m5gy
Removal of LOCK TABLES.

Show diffs side-by-side

added added

removed removed

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