~ubuntu-branches/ubuntu/utopic/mysql-5.5/utopic-security

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Seth Arnold
  • Date: 2013-04-18 18:25:54 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20130418182554-pflh0bjoc611yqxw
Tags: 5.5.31-0ubuntu0.13.04.1
* SECURITY UPDATE: Update to 5.5.31 to fix security issues (LP: #1170516)
  - http://www.oracle.com/technetwork/topics/security/cpuapr2013-1899555.html
* debian/patches/71_disable_rpl_tests.patch: refreshed.
* debian/patches/fix-mysqldump-test.patch: removed, fixed differently
  upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
265
265
#define SRV_SEMAPHORE_WAIT_EXTENSION    7200
266
266
extern ulint    srv_dml_needed_delay;
267
267
 
 
268
#ifdef UNIV_DEBUG
 
269
extern my_bool  srv_purge_view_update_only_debug;
 
270
#endif /* UNIV_DEBUG */
 
271
 
268
272
extern mutex_t* kernel_mutex_temp;/* mutex protecting the server, trx structs,
269
273
                                query threads, and lock table: we allocate
270
274
                                it from dynamic memory to get it to the
333
337
reading of a disk page */
334
338
extern ulint srv_buf_pool_reads;
335
339
 
 
340
/** print all user-level transactions deadlocks to mysqld stderr */
 
341
extern my_bool srv_print_all_deadlocks;
 
342
 
336
343
/** Status variables to be passed to MySQL */
337
344
typedef struct export_var_struct export_struc;
338
345
 
700
707
        ulint innodb_data_reads;                /*!< I/O read requests */
701
708
        ulint innodb_buffer_pool_pages_total;   /*!< Buffer pool size */
702
709
        ulint innodb_buffer_pool_pages_data;    /*!< Data pages */
 
710
        ulint innodb_buffer_pool_bytes_data;    /*!< File bytes used */
703
711
        ulint innodb_buffer_pool_pages_dirty;   /*!< Dirty data pages */
 
712
        ulint innodb_buffer_pool_bytes_dirty;   /*!< File bytes modified */
704
713
        ulint innodb_buffer_pool_pages_misc;    /*!< Miscellanous pages */
705
714
        ulint innodb_buffer_pool_pages_free;    /*!< Free pages */
706
715
#ifdef UNIV_DEBUG
742
751
        ulint innodb_rows_updated;              /*!< srv_n_rows_updated */
743
752
        ulint innodb_rows_deleted;              /*!< srv_n_rows_deleted */
744
753
        ulint innodb_truncated_status_writes;   /*!< srv_truncated_status_writes */
 
754
#ifdef UNIV_DEBUG
 
755
        ulint innodb_purge_trx_id_age;          /*!< max_trx_id - purged trx_id */
 
756
        ulint innodb_purge_view_trx_id_age;     /*!< rw_max_trx_id
 
757
                                                - purged view's min trx_id */
 
758
#endif /* UNIV_DEBUG */
745
759
};
746
760
 
747
761
/** Thread slot in the thread table */