MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
HashMapImpl.hpp
1 /* Copyright (C) 2008 MySQL AB
2 
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.
6 
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.
11 
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 */
15 
16 #ifndef HASHMAP_IMPL_HPP
17 #define HASHMAP_IMPL_HPP
18 
19 #include "SignalData.hpp"
20 
22 {
23 
24  STATIC_CONST( SignalLength = 7 );
25 
26  enum RequestType {
27  };
28 
29  Uint32 senderRef;
30  Uint32 senderData;
31  Uint32 requestType;
32  Uint32 objectId;
33  Uint32 objectVersion;
34  Uint32 buckets;
35  Uint32 fragments;
36 
37  SECTION( INFO = 0 );
38 };
39 
41 {
42 
43  STATIC_CONST( SignalLength = 4 );
44 
45  Uint32 senderRef;
46  Uint32 senderData;
47  Uint32 objectId;
48  Uint32 objectVersion;
49 };
50 
52 {
53  STATIC_CONST( SignalLength = 6 );
54 
55  Uint32 senderRef;
56  Uint32 senderData;
57  Uint32 errorCode;
58  Uint32 errorLine;
59  Uint32 errorKey;
60  Uint32 errorStatus;
61 };
62 
63 #endif