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
3286cb02
Commit
3286cb02
authored
Feb 13, 2002
by
monty@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't print out 'got signal' if not using --warnings
parent
1efcc3e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
sql/mysqld.cc
sql/mysqld.cc
+3
-2
No files found.
sql/mysqld.cc
View file @
3286cb02
...
...
@@ -683,8 +683,9 @@ pthread_handler_decl(kill_server_thread,arg __attribute__((unused)))
static
sig_handler
print_signal_warning
(
int
sig
)
{
sql_print_error
(
"Warning: Got signal %d from thread %d"
,
sig
,
my_thread_id
());
if
(
opt_warnings
)
sql_print_error
(
"Warning: Got signal %d from thread %d"
,
sig
,
my_thread_id
());
#ifdef DONT_REMEMBER_SIGNAL
sigset
(
sig
,
print_signal_warning
);
/* int. thread system calls */
#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