mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
e0ccdc17a2
BUILD/FINISH.sh: Auto merged BUILD/SETUP.sh: Auto merged BUILD/compile-alpha: Auto merged BUILD/compile-pentium-gcov: Auto merged BUILD/compile-pentium-gprof: Auto merged BUILD/compile-pentium: Auto merged BitKeeper/deleted/.del-my_new.cc: Delete: mysys/my_new.cc Build-tools/Do-compile: Auto merged acconfig.h: Auto merged acinclude.m4: Auto merged Docs/manual.texi: Auto merged bdb/dist/configure.in: Auto merged client/Makefile.am: Auto merged innobase/btr/btr0cur.c: Auto merged innobase/buf/buf0lru.c: Auto merged innobase/dict/dict0crea.c: Auto merged innobase/fil/fil0fil.c: Auto merged innobase/include/srv0srv.h: Auto merged innobase/rem/rem0cmp.c: Auto merged innobase/srv/srv0srv.c: Auto merged innobase/srv/srv0start.c: Auto merged innobase/trx/trx0purge.c: Auto merged myisam/myisampack.c: Auto merged mysql-test/mysql-test-run.sh: Auto merged mysql-test/t/join.test: Auto merged mysys/Makefile.am: Auto merged scripts/Makefile.am: Auto merged sql/ha_innodb.h: Auto merged sql/handler.cc: Auto merged sql/my_lock.c: Auto merged sql/mysqld.cc: Auto merged sql/sql_select.cc: Auto merged sql/sql_table.cc: Auto merged support-files/my-huge.cnf.sh: Auto merged support-files/my-large.cnf.sh: Auto merged support-files/my-medium.cnf.sh: Auto merged support-files/my-small.cnf.sh: Auto merged configure.in: merge innobase/row/row0mysql.c: merge innobase/trx/trx0trx.c: merge mysql-test/r/innodb.result: merge mysql-test/r/join.result: merge sql/ha_innodb.cc: merge sql/slave.cc: merge
79 lines
2.4 KiB
C
79 lines
2.4 KiB
C
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
#ifdef __EMX__
|
|
#include "../mysys/my_lock.c"
|
|
#else
|
|
|
|
#undef MAP_TO_USE_RAID /* Avoid RAID mappings */
|
|
#include <my_global.h>
|
|
#include <my_sys.h>
|
|
#include <mysys_err.h>
|
|
#include <my_pthread.h>
|
|
#include <thr_alarm.h>
|
|
#include <errno.h>
|
|
|
|
/* Lock a part of a file */
|
|
|
|
int my_lock(File fd,int locktype,my_off_t start,my_off_t length,myf MyFlags)
|
|
{
|
|
thr_alarm_t alarmed;
|
|
ALARM alarm_buff;
|
|
uint wait_for_alarm;
|
|
struct flock m_lock;
|
|
DBUG_ENTER("my_lock");
|
|
DBUG_PRINT("my",("Fd: %d Op: %d start: %ld Length: %ld MyFlags: %d",
|
|
fd,locktype,(ulong) start,(ulong) length,MyFlags));
|
|
if (my_disable_locking)
|
|
DBUG_RETURN(0); /* purecov: inspected */
|
|
m_lock.l_type=(short) locktype;
|
|
m_lock.l_whence=0L;
|
|
m_lock.l_start=(long) start;
|
|
m_lock.l_len=(long) length;
|
|
wait_for_alarm=(MyFlags & MY_DONT_WAIT ? MY_HOW_OFTEN_TO_ALARM :
|
|
(uint) 12*60*60);
|
|
if (fcntl(fd,F_SETLK,&m_lock) != -1) /* Check if we can lock */
|
|
DBUG_RETURN(0); /* Ok, file locked */
|
|
DBUG_PRINT("info",("Was locked, trying with alarm"));
|
|
if (!thr_alarm(&alarmed,wait_for_alarm,&alarm_buff))
|
|
{
|
|
int value;
|
|
while ((value=fcntl(fd,F_SETLKW,&m_lock)) && !thr_got_alarm(&alarmed) &&
|
|
errno == EINTR) ;
|
|
thr_end_alarm(&alarmed);
|
|
if (value != -1)
|
|
DBUG_RETURN(0);
|
|
}
|
|
else
|
|
{
|
|
errno=EINTR;
|
|
}
|
|
if (errno == EINTR || errno == EACCES)
|
|
my_errno=EAGAIN; /* Easier to check for this */
|
|
else
|
|
my_errno=errno;
|
|
|
|
if (MyFlags & MY_WME)
|
|
{
|
|
if (locktype == F_UNLCK)
|
|
my_error(EE_CANTUNLOCK,MYF(ME_BELL+ME_WAITTANG),errno);
|
|
else
|
|
my_error(EE_CANTLOCK,MYF(ME_BELL+ME_WAITTANG),errno);
|
|
}
|
|
DBUG_PRINT("error",("errno: %d",errno));
|
|
DBUG_RETURN(-1);
|
|
}
|
|
#endif
|