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
df9d8477
Commit
df9d8477
authored
Feb 21, 2012
by
Michael Widenius
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge
parents
15c5a268
bebf3d1d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
12 deletions
+18
-12
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+2
-2
sql/signal_handler.cc
sql/signal_handler.cc
+16
-10
No files found.
mysql-test/mysql-test-run.pl
View file @
df9d8477
...
...
@@ -4472,9 +4472,9 @@ sub extract_warning_lines ($$) {
qr/Failed on request_dump/
,
qr/Slave: Can't drop database.* database doesn't exist/
,
qr/Slave: Operation DROP USER failed for 'create_rout_db'/
,
qr|Checking table: '\.
/mtr/
test_suppressions'|
,
qr|Checking table: '\.
.mtr.
test_suppressions'|
,
qr|Table \./test/bug53592 has a primary key in InnoDB data dictionary, but not in MySQL|
,
qr|mysqld: Table '\.
/mtr/
test_suppressions' is marked as crashed and should be repaired|
,
qr|mysqld: Table '\.
.mtr.
test_suppressions' is marked as crashed and should be repaired|
,
qr|Can't open shared library.*ha_archive|
,
qr|InnoDB: Error: table 'test/bug39438'|
,
qr|Access denied for user|
,
...
...
sql/signal_handler.cc
View file @
df9d8477
...
...
@@ -28,7 +28,7 @@
#endif
/*
We are handling signals in this file.
We are handling signals
/exceptions
in this file.
Any global variables we read should be 'volatile sig_atomic_t'
to guarantee that we read some consistent value.
*/
...
...
@@ -40,20 +40,18 @@ extern volatile sig_atomic_t ld_assume_kernel_is_set;
#endif
/**
* Handler for fatal signals
* Handler for fatal signals
on POSIX, exception handler on Windows.
*
* Fatal events (seg.fault, bus error etc.) will trigger
* this signal handler. The handler will try to dump relevant
* debugging information to stderr and dump a core image.
*
*
Signal handlers can only use a set of 'safe' system calls
* and library functions. A list of safe calls in POSIX systems
*
POSIX : Signal handlers should, if possible, only use a set of 'safe' system
*
calls
and library functions. A list of safe calls in POSIX systems
* are available at:
* http://pubs.opengroup.org/onlinepubs/009695399/functions/xsh_chap02_04.html
* For MS Windows, guidelines are available at:
* http://msdn.microsoft.com/en-us/library/xdkz3x12(v=vs.71).aspx
*
* @param sig Signal number
* @param sig Signal number
/Exception code
*/
extern
"C"
sig_handler
handle_fatal_signal
(
int
sig
)
{
...
...
@@ -77,7 +75,13 @@ extern "C" sig_handler handle_fatal_signal(int sig)
my_safe_printf_stderr
(
"%02d%02d%02d %2d:%02d:%02d "
,
tm
.
tm_year
%
100
,
tm
.
tm_mon
+
1
,
tm
.
tm_mday
,
tm
.
tm_hour
,
tm
.
tm_min
,
tm
.
tm_sec
);
if
(
opt_expect_abort
&&
sig
==
SIGABRT
)
if
(
opt_expect_abort
#ifdef _WIN32
&&
sig
==
EXCEPTION_BREAKPOINT
/* __debugbreak in my_sigabrt_hander() */
#else
&&
sig
==
SIGABRT
#endif
)
{
fprintf
(
stderr
,
"[Note] mysqld did an expected abort
\n
"
);
goto
end
;
...
...
@@ -88,10 +92,10 @@ extern "C" sig_handler handle_fatal_signal(int sig)
my_safe_printf_stderr
(
"%s"
,
"This could be because you hit a bug. It is also possible that this binary
\n
"
"or one of the libraries it was linked against is corrupt, improperly built,
\n
"
"or misconfigured. This error can also be caused by malfunctioning hardware.
\n
"
);
"or misconfigured. This error can also be caused by malfunctioning hardware.
\n
\n
"
);
my_safe_printf_stderr
(
"%s"
,
"To report this bug, see http://kb.askmonty.org/en/reporting-bugs
\n
"
);
"To report this bug, see http://kb.askmonty.org/en/reporting-bugs
\n
\n
"
);
my_safe_printf_stderr
(
"%s"
,
"We will try our best to scrape up some info that will hopefully help
\n
"
...
...
@@ -276,5 +280,7 @@ end:
On Windows, do not terminate, but pass control to exception filter.
*/
_exit
(
1
);
// Using _exit(), since exit() is not async signal safe
#else
return
;
#endif
}
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