~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/include/srv0srv.h

  • Committer: Brian Aker
  • Date: 2010-12-07 09:12:12 UTC
  • mto: This revision was merged to the branch mainline in revision 1985.
  • Revision ID: brian@tangent.org-20101207091212-1m0w20tck6z7632m
This is a fix for bug lp:686197

Show diffs side-by-side

added added

removed removed

Lines of Context:
230
230
extern ulong    srv_spin_wait_delay;
231
231
extern ibool    srv_priority_boost;
232
232
 
233
 
extern ulint    srv_truncated_status_writes;
234
233
 
235
234
#ifdef UNIV_DEBUG
236
235
extern  ibool   srv_print_thread_releases;
720
719
        ulint innodb_rows_inserted;             /*!< srv_n_rows_inserted */
721
720
        ulint innodb_rows_updated;              /*!< srv_n_rows_updated */
722
721
        ulint innodb_rows_deleted;              /*!< srv_n_rows_deleted */
723
 
        ulint innodb_truncated_status_writes;   /*!< srv_truncated_status_writes */
724
722
};
725
723
 
726
724
/** Thread slot in the thread table */
727
725
typedef struct srv_slot_struct  srv_slot_t;
728
 
 
 
726
  
729
727
/** Thread table is an array of slots */
730
728
typedef srv_slot_t      srv_table_t;
731
729