mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / storage / ndb / include / debugger / DebuggerNames.hpp
blob5e412390f4a6cd248dd55bce6041972f53d5dc76
1 /* Copyright (c) 2003, 2005 MySQL AB
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; version 2 of the License.
7 This program is distributed in the hope that it will be useful,
8 but WITHOUT ANY WARRANTY; without even the implied warranty of
9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 GNU General Public License for more details.
12 You should have received a copy of the GNU General Public License
13 along with this program; if not, write to the Free Software
14 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */
16 #ifndef DEBUGGER_NAMES
17 #define DEBUGGER_NAMES
19 #include <kernel_types.h>
20 #include <signaldata/SignalDataPrint.hpp>
22 /**
23 * getSignalName
25 * NOTES: Very quick
27 * RETURNS: Signal name or 0 if none found
29 const char *
30 getSignalName(GlobalSignalNumber gsn, const char * defualtValue = "Unknown");
32 /**
33 * getGsn
35 * NOTES: Very slow
37 * RETURNS: Gsn or 0 if none found
39 GlobalSignalNumber
40 getGsn(const char * signalName);
42 /**
43 * getBlockName
45 * NOTES: Very quick
47 * RETURNS: Block name or
48 * defValue if not a valid block number
50 const char *
51 getBlockName(BlockNumber blockNo, const char * defValue = 0);
53 /**
54 * getBlockNo
56 * NOTES: Very slow
58 * RETURNS: BlockNo or 0 if none found
60 BlockNumber
61 getBlockNo(const char * blockName);
63 /**
64 * Find a print function for a signal
66 * RETURNS: 0 if none found
68 SignalDataPrintFunction findPrintFunction(GlobalSignalNumber);
70 #endif