Browse Source

Fix windows compiler erros.

pull/3/head
Jan Lindström 12 years ago
parent
commit
ec45160e3b
  1. 11
      storage/innobase/include/os0file.h
  2. 12
      storage/xtradb/include/os0file.h
  3. 11
      storage/xtradb/os/os0file.cc

11
storage/innobase/include/os0file.h

@ -1204,7 +1204,16 @@ os_aio_windows_handle(
parameters are valid and can be used to
restart the operation, for example */
void** message2,
ulint* type); /*!< out: OS_FILE_WRITE or ..._READ */
ulint* type, /*!< out: OS_FILE_WRITE or ..._READ */
ulint* write_size,/*!< in/out: Actual write size initialized
after fist successfull trim
operation for this page and if
initialized we do not trim again if
actual page size does not decrease. */
ibool page_compression, /*!< in: is page compression used
on this file space */
ulint page_compression_level) /*!< page compression
level to be used */
#endif
/**********************************************************************//**

12
storage/xtradb/include/os0file.h

@ -1243,7 +1243,17 @@ os_aio_windows_handle(
restart the operation, for example */
void** message2,
ulint* type, /*!< out: OS_FILE_WRITE or ..._READ */
ulint* space_id);
ulint* space_id,
ulint* write_size,/*!< in/out: Actual write size initialized
after fist successfull trim
operation for this page and if
initialized we do not trim again if
actual page size does not decrease. */
ibool page_compression, /*!< in: is page compression used
on this file space */
ulint page_compression_level) /*!< page compression
level to be used */
#endif
/**********************************************************************//**

11
storage/xtradb/os/os0file.cc

@ -5090,7 +5090,16 @@ os_aio_windows_handle(
restart the operation, for example */
void** message2,
ulint* type, /*!< out: OS_FILE_WRITE or ..._READ */
ulint* space_id)
ulint* space_id,
ulint* write_size,/*!< in/out: Actual write size initialized
after fist successfull trim
operation for this page and if
initialized we do not trim again if
actual page size does not decrease. */
ibool page_compression, /*!< in: is page compression used
on this file space */
ulint page_compression_level) /*!< page compression
level to be used */
{
ulint orig_seg = segment;
os_aio_slot_t* slot;

Loading…
Cancel
Save