MySQL 5.6.14 Source Code Document
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
MySQL 5.6.14 Source Code Document
replication of field metadata works.
ndbapi_simple.cpp
ndbapi_async.cpp
ndbapi_async1.cpp
ndbapi_retries.cpp
ndbapi_simple_index.cpp
ndbapi_scan.cpp
ndbapi_event.cpp
Adaptive Send Algorithm
MySQL Cluster Concepts
basic.cpp
common.hpp
br_test.cpp
ptr_binding_test.cpp
The Performance Schema main page
Performance schema: instrumentation interface page.
Performance schema: the aggregates page.
Todo List
Deprecated List
Modules
Namespaces
Classes
Files
File List
client
cmake
cmd-line-utils
dbug
extra
include
libevent
libmysql
libmysqld
libservices
mysql-test
mysys
mysys_ssl
packaging
plugin
regex
scripts
sql
sql-common
storage
archive
blackhole
csv
example
federated
heap
innobase
api
btr
buf
data
dict
dyn
eval
fil
fsp
fts
fut
ha
handler
ibuf
include
api0api.h
api0misc.h
btr0btr.h
btr0cur.h
btr0pcur.h
btr0sea.h
btr0types.h
buf0buddy.h
buf0buf.h
buf0checksum.h
buf0dblwr.h
buf0dump.h
buf0flu.h
buf0lru.h
buf0rea.h
buf0types.h
data0data.h
data0type.h
data0types.h
db0err.h
dict0boot.h
dict0crea.h
dict0dict.h
dict0load.h
dict0mem.h
dict0priv.h
dict0stats.h
dict0stats_bg.h
dict0types.h
dyn0dyn.h
eval0eval.h
eval0proc.h
fil0fil.h
fsp0fsp.h
fsp0types.h
fts0ast.h
fts0blex.h
fts0fts.h
fts0opt.h
fts0pars.h
fts0priv.h
fts0tlex.h
fts0types.h
fut0fut.h
fut0lst.h
ha0ha.h
ha0storage.h
ha_prototypes.h
handler0alter.h
hash0hash.h
ibuf0ibuf.h
ibuf0types.h
lock0iter.h
lock0lock.h
lock0priv.h
lock0types.h
log0log.h
log0recv.h
mach0data.h
mem0dbg.h
mem0mem.h
mem0pool.h
mtr0log.h
mtr0mtr.h
mtr0types.h
os0file.h
os0proc.h
os0sync.h
os0thread.h
page0cur.h
page0page.h
page0types.h
page0zip.h
pars0grm.h
pars0opt.h
pars0pars.h
pars0sym.h
pars0types.h
que0que.h
que0types.h
read0read.h
read0types.h
rem0cmp.h
rem0rec.h
rem0types.h
row0ext.h
row0ftsort.h
row0import.h
row0ins.h
row0log.h
row0merge.h
row0mysql.h
row0purge.h
row0quiesce.h
row0row.h
row0sel.h
row0types.h
row0uins.h
row0umod.h
row0undo.h
row0upd.h
row0vers.h
srv0conc.h
srv0mon.h
srv0srv.h
srv0start.h
sync0arr.h
sync0rw.h
sync0sync.h
sync0types.h
trx0i_s.h
trx0purge.h
trx0rec.h
trx0roll.h
trx0rseg.h
trx0sys.h
trx0trx.h
trx0types.h
trx0undo.h
trx0xa.h
usr0sess.h
usr0types.h
ut0bh.h
ut0byte.h
ut0counter.h
ut0crc32.h
ut0dbg.h
ut0list.h
ut0lst.h
ut0mem.h
ut0rbt.h
ut0rnd.h
ut0sort.h
ut0ut.h
ut0vec.h
ut0wqueue.h
lock
log
mach
mem
mtr
os
page
pars
que
read
rem
row
srv
sync
trx
usr
ut
myisam
myisammrg
ndb
perfschema
strings
support-files
tests
unittest
vio
zlib
File Members
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
mem0dbg.h
Go to the documentation of this file.
1
/*****************************************************************************
2
3
Copyright (c) 1994, 2010, Oracle and/or its affiliates. All Rights Reserved.
4
5
This program is free software; you can redistribute it and/or modify it under
6
the terms of the GNU General Public License as published by the Free Software
7
Foundation; version 2 of the License.
8
9
This program is distributed in the hope that it will be useful, but WITHOUT
10
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
13
You should have received a copy of the GNU General Public License along with
14
this program; if not, write to the Free Software Foundation, Inc.,
15
51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA
16
17
*****************************************************************************/
18
19
/**************************************************/
27
/* In the debug version each allocated field is surrounded with
28
check fields whose sizes are given below */
29
30
#ifdef UNIV_MEM_DEBUG
31
# ifndef UNIV_HOTBACKUP
32
/* The mutex which protects in the debug version the hash table
33
containing the list of live memory heaps, and also the global
34
variables in mem0dbg.cc. */
35
extern
ib_mutex_t
mem_hash_mutex;
36
# endif
/* !UNIV_HOTBACKUP */
37
38
#define MEM_FIELD_HEADER_SIZE ut_calc_align(2 * sizeof(ulint),\
39
UNIV_MEM_ALIGNMENT)
40
#define MEM_FIELD_TRAILER_SIZE sizeof(ulint)
41
#else
42
#define MEM_FIELD_HEADER_SIZE 0
43
#endif
44
45
46
/* Space needed when allocating for a user a field of
47
length N. The space is allocated only in multiples of
48
UNIV_MEM_ALIGNMENT. In the debug version there are also
49
check fields at the both ends of the field. */
50
#ifdef UNIV_MEM_DEBUG
51
#define MEM_SPACE_NEEDED(N) ut_calc_align((N) + MEM_FIELD_HEADER_SIZE\
52
+ MEM_FIELD_TRAILER_SIZE, UNIV_MEM_ALIGNMENT)
53
#else
54
#define MEM_SPACE_NEEDED(N) ut_calc_align((N), UNIV_MEM_ALIGNMENT)
55
#endif
56
57
#if defined UNIV_MEM_DEBUG || defined UNIV_DEBUG
58
/***************************************************************/
64
UNIV_INTERN
65
void
66
mem_heap_validate_or_print(
67
/*=======================*/
68
mem_heap_t
*
heap
,
69
byte* top,
72
ibool print,
75
ibool* error,
76
ulint* us_size,
81
ulint* ph_size,
84
ulint* n_blocks);
87
/**************************************************************/
90
UNIV_INTERN
91
ibool
92
mem_heap_validate(
93
/*==============*/
94
mem_heap_t
*
heap
);
95
#endif
/* UNIV_MEM_DEBUG || UNIV_DEBUG */
96
#ifdef UNIV_DEBUG
97
/**************************************************************/
100
UNIV_INTERN
101
ibool
102
mem_heap_check(
103
/*===========*/
104
mem_heap_t
*
heap
);
105
#endif
/* UNIV_DEBUG */
106
#ifdef UNIV_MEM_DEBUG
107
/*****************************************************************/
110
UNIV_INTERN
111
ibool
112
mem_all_freed(
void
);
113
/*===============*/
114
/*****************************************************************/
117
UNIV_INTERN
118
ibool
119
mem_validate_no_assert(
void
);
120
/*=========================*/
121
/************************************************************/
124
UNIV_INTERN
125
ibool
126
mem_validate(
void
);
127
/*===============*/
128
#endif
/* UNIV_MEM_DEBUG */
129
/************************************************************/
132
UNIV_INTERN
133
void
134
mem_analyze_corruption
(
135
/*===================*/
136
void
* ptr);
137
/*****************************************************************/
140
UNIV_INTERN
141
void
142
mem_print_info
(
void
);
143
/*================*/
144
/*****************************************************************/
147
UNIV_INTERN
148
void
149
mem_print_new_info
(
void
);
150
/*====================*/
storage
innobase
include
mem0dbg.h
Generated on Sat Nov 9 2013 01:26:35 for MySQL 5.6.14 Source Code Document by
1.8.1.2