Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
c8381920
Commit
c8381920
authored
May 13, 2004
by
marko@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
InnoDB: Remove os_file_lock() from the 4.0 tree (unfix Bug #3608)
parent
17d5da7e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
41 deletions
+0
-41
innobase/os/os0file.c
innobase/os/os0file.c
+0
-41
No files found.
innobase/os/os0file.c
View file @
c8381920
...
...
@@ -358,32 +358,6 @@ os_file_handle_error(
return
(
FALSE
);
}
#if !defined(__WIN__) && !defined(UNIV_HOTBACKUP)
/********************************************************************
Obtain an exclusive lock on a file. */
static
int
os_file_lock
(
/*=========*/
/* out: 0 on success */
int
fd
,
/* in: file descriptor */
const
char
*
name
)
/* in: file name */
{
struct
flock
lk
;
lk
.
l_type
=
F_WRLCK
;
lk
.
l_whence
=
SEEK_SET
;
lk
.
l_start
=
lk
.
l_len
=
0
;
if
(
fcntl
(
fd
,
F_SETLK
,
&
lk
)
==
-
1
)
{
fprintf
(
stderr
,
"InnoDB: Unable to lock %s"
,
name
);
perror
(
": fcntl"
);
close
(
fd
);
return
(
-
1
);
}
return
0
;
}
#endif
/* !defined(__WIN__) && !defined(UNIV_HOTBACKUP) */
/********************************************************************
Creates the seek mutexes used in positioned reads and writes. */
...
...
@@ -504,11 +478,6 @@ try_again:
if
(
retry
)
{
goto
try_again
;
}
#ifndef UNIV_HOTBACKUP
}
else
if
(
os_file_lock
(
file
,
name
))
{
*
success
=
FALSE
;
file
=
-
1
;
#endif
}
else
{
*
success
=
TRUE
;
}
...
...
@@ -603,11 +572,6 @@ os_file_create_simple_no_error_handling(
if
(
file
==
-
1
)
{
*
success
=
FALSE
;
#ifndef UNIV_HOTBACKUP
}
else
if
(
os_file_lock
(
file
,
name
))
{
*
success
=
FALSE
;
file
=
-
1
;
#endif
}
else
{
*
success
=
TRUE
;
}
...
...
@@ -808,11 +772,6 @@ try_again:
if
(
retry
)
{
goto
try_again
;
}
#ifndef UNIV_HOTBACKUP
}
else
if
(
os_file_lock
(
file
,
name
))
{
*
success
=
FALSE
;
file
=
-
1
;
#endif
}
else
{
*
success
=
TRUE
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment