~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2010-12-02 22:51:54 UTC
  • mto: (1975.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1976.
  • Revision ID: mordred@inaugust.com-20101202225154-h54ifmga9x6cckgs
Refactored syslog module and changed it to use sys_var directly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
use simulated aio we build below with threads.
113
113
Currently we support native aio on windows and linux */
114
114
extern my_bool  srv_use_native_aio;
115
 
#ifdef __WIN__
116
 
extern ibool    srv_use_native_conditions;
117
 
#endif
118
115
extern ulint    srv_n_data_files;
119
116
extern char**   srv_data_file_names;
120
117
extern ulint*   srv_data_file_sizes;
169
166
#define PCT_IO(p) ((ulong) (srv_io_capacity * ((double) p / 100.0)))
170
167
 
171
168
#ifdef UNIV_LOG_ARCHIVE
172
 
extern ibool            srv_log_archive_on;
173
 
extern ibool            srv_archive_recovery;
174
 
extern ib_uint64_t      srv_archive_recovery_limit_lsn;
 
169
extern ibool    srv_log_archive_on;
 
170
extern ibool    srv_archive_recovery;
 
171
extern dulint   srv_archive_recovery_limit_lsn;
175
172
#endif /* UNIV_LOG_ARCHIVE */
176
173
 
177
174
extern char*    srv_file_flush_method_str;
230
227
extern ulong    srv_spin_wait_delay;
231
228
extern ibool    srv_priority_boost;
232
229
 
233
 
extern ulint    srv_truncated_status_writes;
234
230
 
235
231
#ifdef UNIV_DEBUG
236
232
extern  ibool   srv_print_thread_releases;
720
716
        ulint innodb_rows_inserted;             /*!< srv_n_rows_inserted */
721
717
        ulint innodb_rows_updated;              /*!< srv_n_rows_updated */
722
718
        ulint innodb_rows_deleted;              /*!< srv_n_rows_deleted */
723
 
        ulint innodb_truncated_status_writes;   /*!< srv_truncated_status_writes */
724
719
};
725
720
 
726
721
/** Thread slot in the thread table */
727
722
typedef struct srv_slot_struct  srv_slot_t;
728
 
 
 
723
  
729
724
/** Thread table is an array of slots */
730
725
typedef srv_slot_t      srv_table_t;
731
726