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
b1338c21
Commit
b1338c21
authored
Oct 17, 2005
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Small update for #13377 patch
sql/log.cc: Small update to apply patch to *nix builds as well
parent
8c2edb46
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
9 deletions
+1
-9
sql/log.cc
sql/log.cc
+1
-9
No files found.
sql/log.cc
View file @
b1338c21
...
...
@@ -2322,15 +2322,10 @@ void MYSQL_LOG::signal_update()
void
MYSQL_LOG
::
readers_addref
()
{
/*
currently readers_addref and readers_release are necessary
only for __WIN__ build to wait untill readers will close
opened log files before reset.
There is no necessity for this on *nix, since it allows to
There is no necessity for reference counting on *nix, since it allows to
delete opened files, however it is more clean way to wait
untill all files will be closed on *nix as well.
If decided, the following #ifdef section is to be removed.
*/
#ifdef __WIN__
DBUG_ENTER
(
"MYSQL_LOG::reader_addref"
);
pthread_mutex_lock
(
&
LOCK_log
);
pthread_mutex_lock
(
&
LOCK_readers
);
...
...
@@ -2338,12 +2333,10 @@ void MYSQL_LOG::readers_addref()
pthread_mutex_unlock
(
&
LOCK_readers
);
pthread_mutex_unlock
(
&
LOCK_log
);
DBUG_VOID_RETURN
;
#endif
}
void
MYSQL_LOG
::
readers_release
()
{
#ifdef __WIN__
DBUG_ENTER
(
"MYSQL_LOG::reader_release"
);
pthread_mutex_lock
(
&
LOCK_log
);
readers_count
--
;
...
...
@@ -2351,7 +2344,6 @@ void MYSQL_LOG::readers_release()
pthread_cond_broadcast
(
&
reset_cond
);
pthread_mutex_unlock
(
&
LOCK_log
);
DBUG_VOID_RETURN
;
#endif
}
#ifdef __NT__
...
...
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