Commit ec45160e authored by Jan Lindström's avatar Jan Lindström

Fix windows compiler erros.

parent be50724d
......@@ -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
/**********************************************************************//**
......
......@@ -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
/**********************************************************************//**
......
......@@ -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;
......
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