Commit 24fe09ac authored by monty@work.mysql.com's avatar monty@work.mysql.com

merge

parents d121c2cd 6a3f93f4
...@@ -38,7 +38,7 @@ AC_CHECK_HEADERS(aio.h sched.h) ...@@ -38,7 +38,7 @@ AC_CHECK_HEADERS(aio.h sched.h)
AC_CHECK_SIZEOF(int, 4) AC_CHECK_SIZEOF(int, 4)
AC_CHECK_FUNCS(sched_yield) AC_CHECK_FUNCS(sched_yield)
AC_CHECK_FUNCS(fdatasync) AC_CHECK_FUNCS(fdatasync)
AC_CHECK_FUNCS(localtime_r) #AC_CHECK_FUNCS(localtime_r) # Already checked by MySQL
#AC_C_INLINE Already checked in MySQL #AC_C_INLINE Already checked in MySQL
AC_C_BIGENDIAN AC_C_BIGENDIAN
......
...@@ -603,6 +603,7 @@ os_file_pread( ...@@ -603,6 +603,7 @@ os_file_pread(
#ifdef HAVE_PREAD #ifdef HAVE_PREAD
return(pread(file, buf, n, offs)); return(pread(file, buf, n, offs));
#else #else
{
ssize_t ret; ssize_t ret;
ulint i; ulint i;
...@@ -624,6 +625,7 @@ os_file_pread( ...@@ -624,6 +625,7 @@ os_file_pread(
os_mutex_exit(os_file_seek_mutexes[i]); os_mutex_exit(os_file_seek_mutexes[i]);
return(ret); return(ret);
}
#endif #endif
} }
...@@ -660,6 +662,7 @@ os_file_pwrite( ...@@ -660,6 +662,7 @@ os_file_pwrite(
return(ret); return(ret);
#else #else
{
ulint i; ulint i;
/* Protect the seek / write operation with a mutex */ /* Protect the seek / write operation with a mutex */
...@@ -691,6 +694,7 @@ os_file_pwrite( ...@@ -691,6 +694,7 @@ os_file_pwrite(
os_mutex_exit(os_file_seek_mutexes[i]); os_mutex_exit(os_file_seek_mutexes[i]);
return(ret); return(ret);
}
#endif #endif
} }
#endif #endif
......
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