MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
dummy_nonmt.cpp
1 /*
2  Copyright (C) 2008 MySQL AB, 2008, 2009 Sun Microsystems, Inc.
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 <assert.h>
20 #include <ndb_types.h>
21 
22 void
23 add_thr_map(Uint32, Uint32, Uint32)
24 {
25  assert(false);
26 }
27 
28 void
29 add_main_thr_map()
30 {
31  assert(false);
32 }
33 
34 void
35 add_lqh_worker_thr_map(Uint32, Uint32)
36 {
37  assert(false);
38 }
39 
40 void
41 add_extra_worker_thr_map(Uint32, Uint32)
42 {
43  assert(false);
44 }
45 
46 void
47 finalize_thr_map()
48 {
49  assert(false);
50 }
51 
52 Uint32
53 compute_jb_pages(struct EmulatorData*)
54 {
55  return 0;
56 }
57 
58 bool
59 NdbIsMultiThreaded()
60 {
61  return false;
62 }