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
2f859587
Commit
2f859587
authored
Aug 20, 2004
by
mronstrom@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mronstrom@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/Users/mikron/mysql-4.1
parents
6c84b4e2
4234a57f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
12 deletions
+7
-12
ndb/src/kernel/main.cpp
ndb/src/kernel/main.cpp
+7
-8
ndb/test/run-test/main.cpp
ndb/test/run-test/main.cpp
+0
-2
ndb/test/src/NDBT_Test.cpp
ndb/test/src/NDBT_Test.cpp
+0
-1
ndb/test/tools/cpcc.cpp
ndb/test/tools/cpcc.cpp
+0
-1
No files found.
ndb/src/kernel/main.cpp
View file @
2f859587
...
...
@@ -250,14 +250,13 @@ systemInfo(const Configuration & config, const LogLevel & logLevel){
}
static
void
handler_register
(
int
signum
,
sighandler_t
handler
,
bool
ignore
)
{
if
(
ignore
)
{
if
(
signum
!=
SIGCHLD
)
signal
(
signum
,
SIG_IGN
);
}
else
signal
(
signum
,
handler
);
#define handler_register(signum, handler, ignore)\
{\
if (ignore) {\
if(signum != SIGCHLD)\
signal(signum, SIG_IGN);\
} else\
signal(signum, handler);\
}
void
...
...
ndb/test/run-test/main.cpp
View file @
2f859587
...
...
@@ -987,8 +987,6 @@ setup_hosts(atrt_config& config){
return
true
;
}
template
class
Vector
<
const
ParserRow
<
SimpleCpcClient
::
ParserDummy
>
*>
;
template
class
Vector
<
SimpleCpcClient
::
Process
>;
template
class
Vector
<
Vector
<
SimpleCpcClient
::
Process
>
>
;
template
class
Vector
<
atrt_host
>;
template
class
Vector
<
atrt_process
>;
ndb/test/src/NDBT_Test.cpp
View file @
2f859587
...
...
@@ -1138,4 +1138,3 @@ template class Vector<NDBT_Verifier*>;
template
class
Vector
<
NDBT_Initializer
*
>;
template
class
Vector
<
NDBT_Finalizer
*
>;
template
class
Vector
<
const
NdbDictionary
::
Table
*
>;
template
class
Vector
<
int
>;
ndb/test/tools/cpcc.cpp
View file @
2f859587
...
...
@@ -347,6 +347,5 @@ Operate::evaluate(SimpleCpcClient* c, const SimpleCpcClient::Process & pp){
return
true
;
}
template
class
Vector
<
const
ParserRow
<
SimpleCpcClient
::
ParserDummy
>
*>
;
template
class
Vector
<
Expression
*
>;
template
class
Vector
<
SimpleCpcClient
*
>;
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