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
5415cbc0
Commit
5415cbc0
authored
May 20, 2004
by
msvensson@build.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for BUG#3839 , too many signal handlers installed
parent
98c10ced
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
ndb/src/kernel/ndb-main/Main.cpp
ndb/src/kernel/ndb-main/Main.cpp
+2
-2
No files found.
BitKeeper/etc/logging_ok
View file @
5415cbc0
...
...
@@ -106,6 +106,7 @@ monty@tik.
monty@tik.mysql.fi
monty@tramp.mysql.fi
monty@work.mysql.com
msvensson@build.mysql.com
mwagner@cash.mwagner.org
mwagner@evoq.mwagner.org
mwagner@work.mysql.com
...
...
ndb/src/kernel/ndb-main/Main.cpp
View file @
5415cbc0
...
...
@@ -232,12 +232,12 @@ catchsigs(bool ignore){
// handler named "handler". "handler" will then be called is instead
// of the defualt process signal handler)
if
(
ignore
){
for
(
int
i
=
1
;
i
<
100
;
i
++
){
for
(
int
i
=
1
;
i
<
SIGRTMIN
;
i
++
){
if
(
i
!=
SIGCHLD
)
signal
(
i
,
SIG_IGN
);
}
}
else
{
for
(
int
i
=
1
;
i
<
100
;
i
++
){
for
(
int
i
=
1
;
i
<
SIGRTMIN
;
i
++
){
signal
(
i
,
handler
);
}
}
...
...
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