Commit 2f859587 authored by mronstrom@mysql.com's avatar mronstrom@mysql.com

Merge mronstrom@bk-internal.mysql.com:/home/bk/mysql-4.1

into mysql.com:/Users/mikron/mysql-4.1
parents 6c84b4e2 4234a57f
...@@ -250,14 +250,13 @@ systemInfo(const Configuration & config, const LogLevel & logLevel){ ...@@ -250,14 +250,13 @@ systemInfo(const Configuration & config, const LogLevel & logLevel){
} }
static void #define handler_register(signum, handler, ignore)\
handler_register(int signum, sighandler_t handler, bool ignore) {\
{ if (ignore) {\
if (ignore) { if(signum != SIGCHLD)\
if(signum != SIGCHLD) signal(signum, SIG_IGN);\
signal(signum, SIG_IGN); } else\
} else signal(signum, handler);\
signal(signum, handler);
} }
void void
......
...@@ -987,8 +987,6 @@ setup_hosts(atrt_config& config){ ...@@ -987,8 +987,6 @@ setup_hosts(atrt_config& config){
return true; return true;
} }
template class Vector<const ParserRow<SimpleCpcClient::ParserDummy>*>;
template class Vector<SimpleCpcClient::Process>;
template class Vector<Vector<SimpleCpcClient::Process> >; template class Vector<Vector<SimpleCpcClient::Process> >;
template class Vector<atrt_host>; template class Vector<atrt_host>;
template class Vector<atrt_process>; template class Vector<atrt_process>;
...@@ -1138,4 +1138,3 @@ template class Vector<NDBT_Verifier*>; ...@@ -1138,4 +1138,3 @@ template class Vector<NDBT_Verifier*>;
template class Vector<NDBT_Initializer*>; template class Vector<NDBT_Initializer*>;
template class Vector<NDBT_Finalizer*>; template class Vector<NDBT_Finalizer*>;
template class Vector<const NdbDictionary::Table*>; template class Vector<const NdbDictionary::Table*>;
template class Vector<int>;
...@@ -347,6 +347,5 @@ Operate::evaluate(SimpleCpcClient* c, const SimpleCpcClient::Process & pp){ ...@@ -347,6 +347,5 @@ Operate::evaluate(SimpleCpcClient* c, const SimpleCpcClient::Process & pp){
return true; return true;
} }
template class Vector<const ParserRow<SimpleCpcClient::ParserDummy>*>;
template class Vector<Expression*>; template class Vector<Expression*>;
template class Vector<SimpleCpcClient*>; template class Vector<SimpleCpcClient*>;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment