Commit b512b9de authored by calvin's avatar calvin

branches/innodb+: fix build errors on Windows

- Change os_aio_use_native_aio to srv_use_native_aio
- Change several C++ style variable declarations to C style
  in .C files

Approved by: Inaam

rb://189, mantis issue #362
parent d8f99102
......@@ -152,14 +152,13 @@ buf_flush_block_cmp(
const void* p1, /*!< in: block1 */
const void* p2) /*!< in: block2 */
{
int ret;
int ret;
const buf_page_t* b1 = *(const buf_page_t**) p1;
const buf_page_t* b2 = *(const buf_page_t**) p2;
ut_ad(p1 != NULL);
ut_ad(p2 != NULL);
const buf_page_t* b1 = *(const buf_page_t**) p1;
const buf_page_t* b2 = *(const buf_page_t**) p2;
ut_ad(b1 != NULL);
ut_ad(b2 != NULL);
......
......@@ -92,9 +92,7 @@ UNIV_INTERN ibool os_do_not_call_flush_at_each_write = FALSE;
/* We do not call os_file_flush in every os_file_write. */
#endif /* UNIV_DO_FLUSH */
#ifdef UNIV_HOTBACKUP
# define os_aio_use_native_aio FALSE
#else /* UNIV_HOTBACKUP */
#ifndef UNIV_HOTBACKUP
/* We use these mutexes to protect lseek + file i/o operation, if the
OS does not provide an atomic pread or pwrite, or similar */
#define OS_FILE_N_SEEK_MUTEXES 16
......@@ -283,7 +281,7 @@ static ulint os_aio_n_segments = ULINT_UNDEFINED;
/** If the following is TRUE, read i/o handler threads try to
wait until a batch of new read requests have been posted */
static ibool os_aio_recommend_sleep_for_read_threads = FALSE;
#endif /* UNIV_HOTBACKUP */
#endif /* !UNIV_HOTBACKUP */
UNIV_INTERN ulint os_n_file_reads = 0;
UNIV_INTERN ulint os_bytes_read_since_printout = 0;
......@@ -3743,7 +3741,7 @@ readahead requests. */
os_aio_array_t* array;
ulint g;
if (os_aio_use_native_aio) {
if (srv_use_native_aio) {
/* We do not use simulated aio: do nothing */
return;
......@@ -4829,9 +4827,11 @@ os_aio_print(
memset(n_res_seg, 0x0, sizeof(n_res_seg));
for (i = 0; i < array->n_slots; i++) {
ulint seg_no;
slot = os_aio_array_get_nth_slot(array, i);
ulint seg_no = (i * array->n_segments) / array->n_slots;
seg_no = (i * array->n_segments) / array->n_slots;
if (slot->reserved) {
n_reserved++;
n_res_seg[seg_no]++;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment