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
3f3e37cb
Commit
3f3e37cb
authored
May 11, 2004
by
ingo@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/mydev/mysql-4.1
into mysql.com:/home/mydev/mysql-4.1-wl1687
parents
6fcfc639
7b4cbcf5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
mysys/my_lock.c
mysys/my_lock.c
+6
-4
No files found.
mysys/my_lock.c
View file @
3f3e37cb
...
...
@@ -117,10 +117,12 @@ int my_lock(File fd, int locktype, my_off_t start, my_off_t length,
#if defined(HAVE_FCNTL)
{
struct
flock
lock
;
lock
.
l_type
=
(
short
)
locktype
;
lock
.
l_whence
=
0L
;
lock
.
l_start
=
(
long
)
start
;
lock
.
l_len
=
(
long
)
length
;
lock
.
l_type
=
(
short
)
locktype
;
lock
.
l_whence
=
SEEK_SET
;
lock
.
l_start
=
(
off_t
)
start
;
lock
.
l_len
=
(
off_t
)
length
;
if
(
MyFlags
&
MY_DONT_WAIT
)
{
if
(
fcntl
(
fd
,
F_SETLK
,
&
lock
)
!=
-
1
)
/* Check if we can lock */
...
...
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