MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
LqhTrans.cpp
1 /*
2  Copyright (C) 2003, 2005-2007 MySQL AB
3  All rights reserved. Use is subject to license terms.
4 
5  This program is free software; you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation; version 2 of the License.
8 
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  GNU General Public License for more details.
13 
14  You should have received a copy of the GNU General Public License
15  along with this program; if not, write to the Free Software
16  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18 
19 #include <signaldata/LqhTransConf.hpp>
20 
21 bool
22 printLQH_TRANSCONF(FILE * output, const Uint32 * theData,
23  Uint32 len, Uint16 receiverBlockNo) {
24  const LqhTransConf * const sig = (LqhTransConf *)theData;
25  fprintf(output, " tcRef: %x\n", sig->tcRef);
26  fprintf(output, " lqhNodeId: %x\n", sig->lqhNodeId);
27  fprintf(output, " operationStatus: %x\n", sig->operationStatus);
28  fprintf(output, " transId1: %x\n", sig->transId1);
29  fprintf(output, " transId2: %x\n", sig->transId2);
30  fprintf(output, " apiRef: %x\n", sig->apiRef);
31  fprintf(output, " apiOpRec: %x\n", sig->apiOpRec);
32  fprintf(output, " lqhConnectPtr: %x\n", sig->lqhConnectPtr);
33  fprintf(output, " oldTcOpRec: %x\n", sig->oldTcOpRec);
34  fprintf(output, " requestInfo: %x\n", sig->requestInfo);
35  fprintf(output, " gci_hi: %x\n", sig->gci_hi);
36  fprintf(output, " gci_lo: %x\n", sig->gci_lo);
37  fprintf(output, " nextNodeId1: %x\n", sig->nextNodeId1);
38  fprintf(output, " nextNodeId2: %x\n", sig->nextNodeId2);
39  fprintf(output, " nextNodeId3: %x\n", sig->nextNodeId3);
40  fprintf(output, " tableId: %x\n", sig->tableId);
41  return true;
42 }
43