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
18a01e72
Commit
18a01e72
authored
Mar 24, 2007
by
serg@sergbook.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nptl: typo fixed. sigaddset restored
parent
d2d72bfc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
sql/mysqld.cc
sql/mysqld.cc
+4
-2
No files found.
sql/mysqld.cc
View file @
18a01e72
...
...
@@ -622,7 +622,7 @@ static void close_connections(void)
DBUG_PRINT
(
"info"
,(
"Waiting for select thread"
));
#ifndef DONT_USE_THR_ALARM
if
(
pthread_kill
(
select_thread
,
THR_SERVER_ALARM
))
if
(
pthread_kill
(
select_thread
,
thr_client_alarm
))
break
;
// allready dead
#endif
set_timespec
(
abstime
,
2
);
...
...
@@ -2120,6 +2120,8 @@ static void init_signals(void)
#ifdef SIGTSTP
sigaddset
(
&
set
,
SIGTSTP
);
#endif
if
(
thd_lib_detected
!=
THD_LIB_LT
)
sigaddset
(
&
set
,
THR_SERVER_ALARM
);
if
(
test_flags
&
TEST_SIGINT
)
{
// May be SIGINT
...
...
@@ -3157,7 +3159,7 @@ int main(int argc, char **argv)
#if defined(SIGUSR2)
thr_kill_signal
=
thd_lib_detected
==
THD_LIB_LT
?
SIGINT
:
SIGUSR2
;
#else
thr_kill_signal
=
thd_lib_detected
==
SIGINT
;
thr_kill_signal
=
SIGINT
;
#endif
#ifdef _CUSTOMSTARTUPCONFIG_
...
...
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