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
acdfc1e9
Commit
acdfc1e9
authored
Feb 28, 2007
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge pilot.blaudden:/home/msvensson/mysql/bug24878/my41-bug24878
into pilot.blaudden:/home/msvensson/mysql/mysql-4.1-maint
parents
22cac737
87eee8fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
sql/mysqld.cc
sql/mysqld.cc
+10
-1
No files found.
sql/mysqld.cc
View file @
acdfc1e9
...
@@ -1933,7 +1933,10 @@ static void check_data_home(const char *path)
...
@@ -1933,7 +1933,10 @@ static void check_data_home(const char *path)
extern
"C"
sig_handler
handle_segfault
(
int
sig
)
extern
"C"
sig_handler
handle_segfault
(
int
sig
)
{
{
time_t
curr_time
;
struct
tm
tm
;
THD
*
thd
=
current_thd
;
THD
*
thd
=
current_thd
;
/*
/*
Strictly speaking, one needs a mutex here
Strictly speaking, one needs a mutex here
but since we have got SIGSEGV already, things are a mess
but since we have got SIGSEGV already, things are a mess
...
@@ -1947,11 +1950,17 @@ extern "C" sig_handler handle_segfault(int sig)
...
@@ -1947,11 +1950,17 @@ extern "C" sig_handler handle_segfault(int sig)
}
}
segfaulted
=
1
;
segfaulted
=
1
;
curr_time
=
time
(
NULL
);
localtime_r
(
&
curr_time
,
&
tm
);
fprintf
(
stderr
,
"\
fprintf
(
stderr
,
"\
mysqld got signal %d;
\n
\
%02d%02d%02d %2d:%02d:%02d -
mysqld got signal %d;
\n
\
This could be because you hit a bug. It is also possible that this binary
\n
\
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 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
"
,
tm
.
tm_year
%
100
,
tm
.
tm_mon
+
1
,
tm
.
tm_mday
,
tm
.
tm_hour
,
tm
.
tm_min
,
tm
.
tm_sec
,
sig
);
sig
);
fprintf
(
stderr
,
"\
fprintf
(
stderr
,
"\
We will try our best to scrape up some info that will hopefully help diagnose
\n
\
We will try our best to scrape up some info that will hopefully help diagnose
\n
\
...
...
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