20 #include <RefConvert.hpp>
21 #include <signaldata/StartRec.hpp>
22 #include <signaldata/StartFragReq.hpp>
25 printSTART_REC_REQ(FILE * output,
26 const Uint32 * theData,
31 if (len != StartRecReq::SignalLength)
34 fprintf(output,
" receivingNodeId: %d senderRef: (%d, %d)\n",
36 refToNode(sig->senderRef),
37 refToBlock(sig->senderRef));
40 " keepGci: %d lastCompletedGci: %d newestGci: %d senderData: %x\n",
42 sig->lastCompletedGci,
47 mask.
assign(NdbNodeBitmask::Size, sig->sr_nodes);
51 " sr_nodes: %s\n", mask.
getText(buf));
57 printSTART_REC_CONF(FILE * output,
58 const Uint32 * theData,
63 if (len != StartRecConf::SignalLength)
66 fprintf(output,
" startingNodeId: %d senderData: %u\n",
74 printSTART_FRAG_REQ(FILE * output,
75 const Uint32 * theData,
81 fprintf(output,
" table: %d frag: %d lcpId: %d lcpNo: %d #nodes: %d \n",
82 sig->tableId, sig->fragId, sig->lcpId, sig->lcpNo,
85 for(Uint32
i = 0;
i<sig->noOfLogNodes;
i++)
87 fprintf(output,
" (node: %d startGci: %d lastGci: %d)",
93 fprintf(output,
"\n");