зеркало из https://github.com/github/ruby.git
* file.c (rb_thread_flock): should have resolved conflict.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9239 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
75ee37707e
Коммит
a6eb4609c2
9
file.c
9
file.c
|
@ -2886,20 +2886,11 @@ static int
|
|||
rb_thread_flock(int fd, int op, OpenFile *fptr)
|
||||
{
|
||||
if (rb_thread_alone() || (op & LOCK_NB)) {
|
||||
<<<<<<< file.c
|
||||
int n;
|
||||
|
||||
TRAP_BEG;
|
||||
n = flock(fd, op);
|
||||
TRAP_END;
|
||||
return n;
|
||||
=======
|
||||
int ret;
|
||||
TRAP_BEG;
|
||||
ret = flock(fd, op);
|
||||
TRAP_END;
|
||||
return ret;
|
||||
>>>>>>> 1.208
|
||||
}
|
||||
op |= LOCK_NB;
|
||||
while (flock(fd, op) < 0) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче