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
2283f2d8
Commit
2283f2d8
authored
Nov 21, 2001
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge
sql/mysqld.cc: Auto merged Docs/manual.texi: SCCS merged
parents
689a55b1
0afe57ba
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
22 deletions
+24
-22
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
Docs/manual.texi
Docs/manual.texi
+2
-6
sql/mysqld.cc
sql/mysqld.cc
+19
-16
sql/stacktrace.c
sql/stacktrace.c
+2
-0
No files found.
BitKeeper/etc/logging_ok
View file @
2283f2d8
...
@@ -7,3 +7,4 @@ sasha@mysql.sashanet.com
...
@@ -7,3 +7,4 @@ sasha@mysql.sashanet.com
heikki@donna.mysql.fi
heikki@donna.mysql.fi
miguel@light.local
miguel@light.local
monty@donna.mysql.fi
monty@donna.mysql.fi
monty@bitch.mysql.fi
Docs/manual.texi
View file @
2283f2d8
...
@@ -9880,12 +9880,6 @@ that you also probably need to raise the @code{core file size} by adding
...
@@ -9880,12 +9880,6 @@ that you also probably need to raise the @code{core file size} by adding
@code{ulimit -c 1000000} to @code{safe_mysqld} or starting @code{safe_mysqld}
@code{ulimit -c 1000000} to @code{safe_mysqld} or starting @code{safe_mysqld}
with @code{--core-file-sizes=1000000}. @xref{safe_mysqld, , @code{safe_mysqld}}.
with @code{--core-file-sizes=1000000}. @xref{safe_mysqld, , @code{safe_mysqld}}.
To get a core dump on Linux if @code{mysqld} dies with a SIGSEGV signal, you can
start @code{mysqld} with the @code{--core-file} option. Note that you also probably
need to raise the @code{core file size} by adding @code{ulimit -c 1000000} to
@code{safe_mysqld} or starting @code{safe_mysqld} with
@code{--core-file-sizes=1000000}. @xref{safe_mysqld, , @code{safe_mysqld}}.
If you are linking your own MySQL client and get the error:
If you are linking your own MySQL client and get the error:
@example
@example
...
@@ -46844,6 +46838,8 @@ not yet 100% confident in this code.
...
@@ -46844,6 +46838,8 @@ not yet 100% confident in this code.
@appendixsubsec Changes in release 3.23.45
@appendixsubsec Changes in release 3.23.45
@itemize @bullet
@itemize @bullet
@item
@item
@code{--core-file} now works on Solaris.
@item
Fix a bug which could cause InnoDB to complain if it cannot find free blocks
Fix a bug which could cause InnoDB to complain if it cannot find free blocks
from the buffer cache during recovery.
from the buffer cache during recovery.
@item
@item
sql/mysqld.cc
View file @
2283f2d8
...
@@ -1116,6 +1116,19 @@ static void start_signal_handler(void)
...
@@ -1116,6 +1116,19 @@ static void start_signal_handler(void)
}
}
#elif defined(__EMX__)
#elif defined(__EMX__)
static
void
init_signals
(
void
)
{
signal
(
SIGQUIT
,
sig_kill
);
signal
(
SIGKILL
,
sig_kill
);
signal
(
SIGTERM
,
sig_kill
);
signal
(
SIGINT
,
sig_kill
);
signal
(
SIGHUP
,
sig_reload
);
// Flush everything
signal
(
SIGALRM
,
SIG_IGN
);
signal
(
SIGBREAK
,
SIG_IGN
);
signal_thread
=
pthread_self
();
}
static
void
sig_reload
(
int
signo
)
static
void
sig_reload
(
int
signo
)
{
{
reload_acl_and_cache
((
THD
*
)
0
,
REFRESH_LOG
,
(
TABLE_LIST
*
)
0
);
// Flush everything
reload_acl_and_cache
((
THD
*
)
0
,
REFRESH_LOG
,
(
TABLE_LIST
*
)
0
);
// Flush everything
...
@@ -1132,22 +1145,10 @@ static void sig_kill(int signo)
...
@@ -1132,22 +1145,10 @@ static void sig_kill(int signo)
signal
(
signo
,
SIG_ACK
);
signal
(
signo
,
SIG_ACK
);
}
}
static
void
init_signals
(
void
)
{
signal
(
SIGQUIT
,
sig_kill
);
signal
(
SIGKILL
,
sig_kill
);
signal
(
SIGTERM
,
sig_kill
);
signal
(
SIGINT
,
sig_kill
);
signal
(
SIGHUP
,
sig_reload
);
// Flush everything
signal
(
SIGALRM
,
SIG_IGN
);
signal
(
SIGBREAK
,
SIG_IGN
);
signal_thread
=
pthread_self
();
}
static
void
start_signal_handler
(
void
)
static
void
start_signal_handler
(
void
)
{
{
}
}
#else
/* if ! __WIN__ && ! __EMX__ */
#else
/* if ! __WIN__ && ! __EMX__ */
#ifdef HAVE_LINUXTHREADS
#ifdef HAVE_LINUXTHREADS
...
@@ -1157,10 +1158,12 @@ static void start_signal_handler(void)
...
@@ -1157,10 +1158,12 @@ static void start_signal_handler(void)
static
sig_handler
handle_segfault
(
int
sig
)
static
sig_handler
handle_segfault
(
int
sig
)
{
{
THD
*
thd
=
current_thd
;
THD
*
thd
=
current_thd
;
// strictly speaking, one needs a mutex here
/*
// but since we have got SIGSEGV already, things are a mess
Strictly speaking, we should need a mutex here
// so not having the mutex is not as bad as possibly using a buggy
but since we have got SIGSEGV already, things are a mess
// mutex - so we keep things simple
so not having the mutex is not as bad as possibly using a buggy
mutex - so we keep things simple.
*/
if
(
segfaulted
)
if
(
segfaulted
)
{
{
fprintf
(
stderr
,
"Fatal signal %d while backtracing
\n
"
,
sig
);
fprintf
(
stderr
,
"Fatal signal %d while backtracing
\n
"
,
sig
);
...
...
sql/stacktrace.c
View file @
2283f2d8
...
@@ -218,5 +218,7 @@ void write_core(int sig)
...
@@ -218,5 +218,7 @@ void write_core(int sig)
{
{
signal
(
sig
,
SIG_DFL
);
signal
(
sig
,
SIG_DFL
);
pthread_kill
(
pthread_self
(),
sig
);
pthread_kill
(
pthread_self
(),
sig
);
/* On Solaris, the above kill is not enough */
sigsend
(
P_PID
,
P_MYID
,
sig
);
}
}
#endif
#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