Commit 41f1ed23 authored by ingo@mysql.com's avatar ingo@mysql.com

Merge mysql.com:/home/mydev/mysql-4.1

into mysql.com:/home/mydev/mysql-4.1-wl1687
parents 565aa085 98e86c94
...@@ -117,10 +117,12 @@ int my_lock(File fd, int locktype, my_off_t start, my_off_t length, ...@@ -117,10 +117,12 @@ int my_lock(File fd, int locktype, my_off_t start, my_off_t length,
#if defined(HAVE_FCNTL) #if defined(HAVE_FCNTL)
{ {
struct flock lock; struct flock lock;
lock.l_type= (short) locktype; lock.l_type= (short) locktype;
lock.l_whence=0L; lock.l_whence= SEEK_SET;
lock.l_start=(long) start; lock.l_start= (off_t) start;
lock.l_len=(long) length; lock.l_len= (off_t) length;
if (MyFlags & MY_DONT_WAIT) if (MyFlags & MY_DONT_WAIT)
{ {
if (fcntl(fd,F_SETLK,&lock) != -1) /* Check if we can lock */ if (fcntl(fd,F_SETLK,&lock) != -1) /* Check if we can lock */
......
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