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
9c950bca
Commit
9c950bca
authored
Mar 01, 2007
by
rafal@quant.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge quant.(none):/ext/mysql/bk/mysql-5.0-bug25306
into quant.(none):/ext/mysql/bkroot/mysql-5.1-new-rpl
parents
504b4d2d
5efe0e4a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
9 deletions
+28
-9
sql/slave.cc
sql/slave.cc
+23
-6
sql/sql_repl.cc
sql/sql_repl.cc
+5
-3
No files found.
sql/slave.cc
View file @
9c950bca
...
...
@@ -2205,11 +2205,16 @@ err:
THD_CHECK_SENTRY
(
thd
);
delete
thd
;
pthread_mutex_unlock
(
&
LOCK_thread_count
);
mi
->
abort_slave
=
0
;
mi
->
slave_running
=
0
;
mi
->
io_thd
=
0
;
pthread_mutex_unlock
(
&
mi
->
run_lock
);
mi
->
abort_slave
=
0
;
mi
->
slave_running
=
0
;
mi
->
io_thd
=
0
;
/*
Note: the order of the two following calls (first broadcast, then unlock)
is important. Otherwise a killer_thread can execute between the calls and
delete the mi structure leading to a crash! (see BUG#25306 for details)
*/
pthread_cond_broadcast
(
&
mi
->
stop_cond
);
// tell the world we are done
pthread_mutex_unlock
(
&
mi
->
run_lock
);
my_thread_end
();
pthread_exit
(
0
);
DBUG_RETURN
(
0
);
// Can't return anything here
...
...
@@ -2455,9 +2460,21 @@ the slave SQL thread with \"SLAVE START\". We stopped at log \
THD_CHECK_SENTRY
(
thd
);
delete
thd
;
pthread_mutex_unlock
(
&
LOCK_thread_count
);
#ifndef DBUG_OFF
/*
Bug #19938 Valgrind error (race) in handle_slave_sql()
Read the value of rli->event_till_abort before releasing the mutex
*/
const
int
eta
=
rli
->
events_till_abort
;
#endif
/*
Note: the order of the broadcast and unlock calls below (first broadcast, then unlock)
is important. Otherwise a killer_thread can execute between the calls and
delete the mi structure leading to a crash! (see BUG#25306 for details)
*/
pthread_cond_broadcast
(
&
rli
->
stop_cond
);
// tell the world we are done
pthread_mutex_unlock
(
&
rli
->
run_lock
);
pthread_mutex_unlock
(
&
rli
->
run_lock
);
// tell the world we are done
my_thread_end
();
pthread_exit
(
0
);
DBUG_RETURN
(
0
);
// Can't return anything here
...
...
sql/sql_repl.cc
View file @
9c950bca
...
...
@@ -886,12 +886,14 @@ int start_slave(THD* thd , MASTER_INFO* mi, bool net_report)
int
stop_slave
(
THD
*
thd
,
MASTER_INFO
*
mi
,
bool
net_report
)
{
DBUG_ENTER
(
"stop_slave"
);
int
slave_errno
;
if
(
!
thd
)
thd
=
current_thd
;
if
(
check_access
(
thd
,
SUPER_ACL
,
any_db
,
0
,
0
,
0
,
0
))
return
1
;
DBUG_RETURN
(
1
)
;
thd
->
proc_info
=
"Killing slave"
;
int
thread_mask
;
lock_slave_threads
(
mi
);
...
...
@@ -925,12 +927,12 @@ int stop_slave(THD* thd, MASTER_INFO* mi, bool net_report )
{
if
(
net_report
)
my_message
(
slave_errno
,
ER
(
slave_errno
),
MYF
(
0
));
return
1
;
DBUG_RETURN
(
1
)
;
}
else
if
(
net_report
)
send_ok
(
thd
);
return
0
;
DBUG_RETURN
(
0
)
;
}
...
...
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