ReadNodesConf.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #include <signaldata/ReadNodesConf.hpp>
  2. bool
  3. printREAD_NODES_CONF(FILE * output, const Uint32 * theData, 
  4.      Uint32 len, Uint16 receiverBlockNo) {
  5.   const ReadNodesConf * const sig = (ReadNodesConf *)theData;
  6.   fprintf(output, " noOfNodes: %xn", sig->noOfNodes);
  7.   fprintf(output, " ndynamicId: %xn", sig->ndynamicId);
  8.   fprintf(output, " masterNodeId: %xn", sig->masterNodeId);
  9.   char buf[32*NdbNodeBitmask::Size+1];
  10.   fprintf(output, " allNodes(defined): %sn", 
  11.   BitmaskImpl::getText(NdbNodeBitmask::Size, sig->allNodes, buf));
  12.   fprintf(output, " inactiveNodes: %sn", 
  13.   BitmaskImpl::getText(NdbNodeBitmask::Size, sig->inactiveNodes, buf));
  14.   fprintf(output, " clusterNodes: %sn", 
  15.   BitmaskImpl::getText(NdbNodeBitmask::Size, sig->clusterNodes, buf));
  16.   fprintf(output, " startedNodes: %sn", 
  17.   BitmaskImpl::getText(NdbNodeBitmask::Size, sig->startedNodes, buf));
  18.   fprintf(output, " startingNodes: %sn", 
  19.   BitmaskImpl::getText(NdbNodeBitmask::Size, sig->startingNodes, buf));
  20.   return true;
  21. }