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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
aa420935
Commit
aa420935
authored
Mar 24, 2007
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge sergbook.mysql.com:/usr/home/serg/Abk/mysql-5.0-build
into sergbook.mysql.com:/usr/home/serg/Abk/mysql-5.0
parents
48d4d50c
27f8c357
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
15 deletions
+14
-15
mysql-test/t/wait_for_socket.sh
mysql-test/t/wait_for_socket.sh
+1
-1
mysys/thr_alarm.c
mysys/thr_alarm.c
+4
-0
sql/mysqld.cc
sql/mysqld.cc
+9
-14
No files found.
mysql-test/t/wait_for_socket.sh
View file @
aa420935
...
@@ -61,7 +61,7 @@ fi
...
@@ -61,7 +61,7 @@ fi
###########################################################################
###########################################################################
client_args
=
"--silent --socket=
$socket_path
--connect_timeout=1 "
client_args
=
"--
no-defaults --
silent --socket=
$socket_path
--connect_timeout=1 "
[
-n
"
$username
"
]
&&
client_args
=
"
$client_args
--user=
$username
"
[
-n
"
$username
"
]
&&
client_args
=
"
$client_args
--user=
$username
"
[
-n
"
$password
"
]
&&
client_args
=
"
$client_args
--password=
$password
"
[
-n
"
$password
"
]
&&
client_args
=
"
$client_args
--password=
$password
"
...
...
mysys/thr_alarm.c
View file @
aa420935
...
@@ -77,6 +77,10 @@ void init_thr_alarm(uint max_alarms)
...
@@ -77,6 +77,10 @@ void init_thr_alarm(uint max_alarms)
sigfillset
(
&
full_signal_set
);
/* Neaded to block signals */
sigfillset
(
&
full_signal_set
);
/* Neaded to block signals */
pthread_mutex_init
(
&
LOCK_alarm
,
MY_MUTEX_INIT_FAST
);
pthread_mutex_init
(
&
LOCK_alarm
,
MY_MUTEX_INIT_FAST
);
pthread_cond_init
(
&
COND_alarm
,
NULL
);
pthread_cond_init
(
&
COND_alarm
,
NULL
);
if
(
thd_lib_detected
==
THD_LIB_LT
)
thr_client_alarm
=
SIGALRM
;
else
thr_client_alarm
=
SIGUSR1
;
#ifndef USE_ALARM_THREAD
#ifndef USE_ALARM_THREAD
if
(
thd_lib_detected
!=
THD_LIB_LT
)
if
(
thd_lib_detected
!=
THD_LIB_LT
)
#endif
#endif
...
...
sql/mysqld.cc
View file @
aa420935
...
@@ -2180,17 +2180,6 @@ static void init_signals(void)
...
@@ -2180,17 +2180,6 @@ static void init_signals(void)
struct
sigaction
sa
;
struct
sigaction
sa
;
DBUG_ENTER
(
"init_signals"
);
DBUG_ENTER
(
"init_signals"
);
if
(
thd_lib_detected
==
THD_LIB_LT
)
{
thr_client_alarm
=
SIGALRM
;
thr_kill_signal
=
SIGINT
;
}
else
{
thr_client_alarm
=
SIGUSR1
;
thr_kill_signal
=
SIGUSR2
;
}
if
(
test_flags
&
TEST_SIGINT
)
if
(
test_flags
&
TEST_SIGINT
)
{
{
my_sigset
(
thr_kill_signal
,
end_thread_signal
);
my_sigset
(
thr_kill_signal
,
end_thread_signal
);
...
@@ -2249,14 +2238,13 @@ static void init_signals(void)
...
@@ -2249,14 +2238,13 @@ static void init_signals(void)
#ifdef SIGTSTP
#ifdef SIGTSTP
sigaddset
(
&
set
,
SIGTSTP
);
sigaddset
(
&
set
,
SIGTSTP
);
#endif
#endif
if
(
thd_lib_detected
!=
THD_LIB_LT
)
sigaddset
(
&
set
,
THR_SERVER_ALARM
);
sigaddset
(
&
set
,
THR_SERVER_ALARM
);
if
(
test_flags
&
TEST_SIGINT
)
if
(
test_flags
&
TEST_SIGINT
)
{
{
// May be SIGINT
// May be SIGINT
sigdelset
(
&
set
,
thr_kill_signal
);
sigdelset
(
&
set
,
thr_kill_signal
);
}
}
// For alarms
sigdelset
(
&
set
,
thr_client_alarm
);
sigprocmask
(
SIG_SETMASK
,
&
set
,
NULL
);
sigprocmask
(
SIG_SETMASK
,
&
set
,
NULL
);
pthread_sigmask
(
SIG_SETMASK
,
&
set
,
NULL
);
pthread_sigmask
(
SIG_SETMASK
,
&
set
,
NULL
);
DBUG_VOID_RETURN
;
DBUG_VOID_RETURN
;
...
@@ -3432,6 +3420,13 @@ int main(int argc, char **argv)
...
@@ -3432,6 +3420,13 @@ int main(int argc, char **argv)
DEBUGGER_OFF
;
DEBUGGER_OFF
;
/* Set signal used to kill MySQL */
#if defined(SIGUSR2)
thr_kill_signal
=
thd_lib_detected
==
THD_LIB_LT
?
SIGINT
:
SIGUSR2
;
#else
thr_kill_signal
=
SIGINT
;
#endif
#ifdef _CUSTOMSTARTUPCONFIG_
#ifdef _CUSTOMSTARTUPCONFIG_
if
(
_cust_check_startup
())
if
(
_cust_check_startup
())
{
{
...
...
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