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
52ca3326
Commit
52ca3326
authored
Mar 28, 2007
by
serg@janus.mylan
Browse files
Options
Browse Files
Download
Plain Diff
Merge janus.mylan:/usr/home/serg/Abk/mysql-5.0-build
into janus.mylan:/usr/home/serg/Abk/mysql-5.1-build
parents
e5b66048
1af6b027
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
mysql-test/t/wait_for_socket.sh
mysql-test/t/wait_for_socket.sh
+1
-1
sql/mysqld.cc
sql/mysqld.cc
+2
-3
No files found.
mysql-test/t/wait_for_socket.sh
View file @
52ca3326
...
@@ -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
"
...
...
sql/mysqld.cc
View file @
52ca3326
...
@@ -2346,14 +2346,13 @@ static void init_signals(void)
...
@@ -2346,14 +2346,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
;
...
...
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