Commit 90e6e892 authored by joreland@mysql.com's avatar joreland@mysql.com

Compile fix sol9x86

parent 908ff049
......@@ -148,7 +148,7 @@ private:
*/
class Grep : public SimulatedBlock //GrepParticipant
{
//BLOCK_DEFINES(Grep);
BLOCK_DEFINES(Grep);
public:
Grep(const Configuration & conf);
......@@ -519,19 +519,6 @@ public:
typedef void (Grep::* ExecSignalLocal1) (Signal* signal);
typedef void (Grep::PSCoord::* ExecSignalLocal2) (Signal* signal);
typedef void (Grep::PSPart::* ExecSignalLocal4) (Signal* signal);
void
addRecSignal(GlobalSignalNumber gsn, ExecSignalLocal1 f, bool force = false){
addRecSignalImpl(gsn, (ExecFunction)f, force);
}
void
addRecSignal(GlobalSignalNumber gsn, ExecSignalLocal2 f, bool force = false){
addRecSignalImpl(gsn, (ExecFunction)f, force);
}
void
addRecSignal(GlobalSignalNumber gsn, ExecSignalLocal4 f, bool force = false){
addRecSignalImpl(gsn, (ExecFunction)f, force);
}
};
......
......@@ -132,7 +132,7 @@ Grep::~Grep()
{
}
//BLOCK_FUNCTIONS(Grep);
BLOCK_FUNCTIONS(Grep);
Grep::PSPart::PSPart(Grep * sb) :
BlockComponent(sb),
......
......@@ -2885,4 +2885,6 @@ MgmtSrvr::setDbParameter(int node, int param, const char * value,
}
template class Vector<SigMatch>;
#if __SUNPRO_CC != 0x560
template bool SignalQueue::waitFor<SigMatch>(Vector<SigMatch>&, SigMatch*&, NdbApiSignal*&, unsigned);
#endif
......@@ -37,7 +37,7 @@
NdbEventOperation::NdbEventOperation(Ndb *theNdb,
const char* eventName,
const int bufferLength)
int bufferLength)
: m_impl(* new NdbEventOperationImpl(*this,theNdb,
eventName,
bufferLength))
......
......@@ -778,7 +778,8 @@ main(void){
#endif
template class Vector<NdbScanFilterImpl::State>;
#if __SUNPRO_CC != 0x560
template int NdbScanFilterImpl::cond_col_const(Interpreter::BinaryCondition, Uint32 attrId, Uint32);
template int NdbScanFilterImpl::cond_col_const(Interpreter::BinaryCondition, Uint32 attrId, Uint64);
#endif
......@@ -161,7 +161,9 @@ private:
/**
* Block number handling
*/
public:
static const unsigned MAX_NO_THREADS = 4711;
private:
struct ThreadData {
static const Uint32 ACTIVE = (1 << 16) | 1;
......
......@@ -386,6 +386,7 @@ sync_down(NDBT_Context* ctx){
if(threads){
ctx->decProperty("PauseThreads");
}
return 0;
}
int
......@@ -397,6 +398,7 @@ sync_up_and_wait(NDBT_Context* ctx){
if(threads){
ndbout_c("wait completed");
}
return 0;
}
int
......
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