Re: A question about sendSinal() function
Hi David,
Looks like it's defined in DblqhMain.cpp:
#ifdef NDB_DEBUG_FULL
#ifdef ERROR_INSERT
void
TraceLCP::sendSignal(Uint32 ref, Uint32 gsn, Signal* signal,
Uint32 len, Uint32 prio)
{
Sig s;
s.type = Sig::Sig_send;
s.header = signal->header;
s.header.theVerId_signalNumber = gsn;
s.header.theReceiversBlockNumber = ref;
s.header.theLength = len;
memcpy(s.theData, signal->theData, 4 * len);
m_signals.push_back(s);
assert(signal->getNoOfSections() == 0);
}
...
#endif
#endif
There are some other sendSignal() functions defined elsewhere, but they all appear to return int and/or have the wrong number of arguments.
HTH,
Jon Stephens
MySQL Documentation Team @ Oracle
MySQL Dev Zone
MySQL Server Documentation
Oracle
Subject
Views
Written By
Posted
1524
March 06, 2016 03:06AM
626
March 06, 2016 07:09AM
605
April 14, 2016 05:03PM
Re: A question about sendSinal() function
715
March 29, 2016 03:13AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.