-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathdebug_sync.h
134 lines (109 loc) · 5.33 KB
/
debug_sync.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#ifndef DEBUG_SYNC_INCLUDED
#define DEBUG_SYNC_INCLUDED
/* Copyright (c) 2009, 2024, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
/**
@file
Declarations for the Debug Sync Facility. See debug_sync.cc for details.
*/
#include <stddef.h>
#include <sys/types.h>
#include <string>
#include "my_compiler.h"
#include "my_inttypes.h"
#include "my_sharedlib.h"
#include "string_with_len.h"
class THD;
#if defined(ENABLED_DEBUG_SYNC)
/* Macro to be put in the code at synchronization points. */
#define DEBUG_SYNC(_thd_, _sync_point_name_) \
do { \
if (unlikely(opt_debug_sync_timeout)) \
debug_sync(_thd_, STRING_WITH_LEN(_sync_point_name_)); \
} while (0)
/* Command line option --debug-sync-timeout. See mysqld.cc. */
extern MYSQL_PLUGIN_IMPORT uint opt_debug_sync_timeout;
/* Default WAIT_FOR timeout if command line option is given without argument. */
#define DEBUG_SYNC_DEFAULT_WAIT_TIMEOUT 300
/* Debug Sync prototypes. See debug_sync.cc. */
extern int debug_sync_init(void);
extern void debug_sync_end(void);
extern void debug_sync_init_thread(THD *thd);
extern void debug_sync_claim_memory_ownership(THD *thd, bool claim);
extern void debug_sync_end_thread(THD *thd);
extern void debug_sync(THD *thd, const char *sync_point_name, size_t name_len);
extern bool debug_sync_set_action(THD *thd, const char *action_str, size_t len);
extern bool debug_sync_update(THD *thd, char *val_str);
extern uchar *debug_sync_value_ptr(THD *thd);
extern void conditional_sync_point_for_timestamp(std::string name);
extern void conditional_sync_point(std::string name);
/**
This macro simplifies when a DBUG_EXECUTE_IF will generate a given
signal and then will wait for another signal to continue.
*/
#define DBUG_SIGNAL_WAIT_FOR(T, A, B, C) \
DBUG_EXECUTE_IF(A, { \
const char act[] = "now SIGNAL " B " WAIT_FOR " C; \
assert(!debug_sync_set_action(T, STRING_WITH_LEN(act))); \
};)
/**
Set a sync point that is activated by setting
@@debug='d,syncpoint_NAME', and which will emit the signal
"reached_NAME" and wait for the signal "continue_NAME"
@param[in] NAME The name of the debug symbol. This should indicate
the logical point in time in the code flow where it
appears. Usually it should have the form "before_EVENT" or
"after_EVENT", where EVENT identifies something that the code
does. EVENT might for instance be the name of a function in the
source code. The sync point might be reused by multiple tests, so
the name should relate to what the server does and not the test
scenario.
*/
#define CONDITIONAL_SYNC_POINT(NAME) conditional_sync_point(NAME)
/**
Set a sync point that is activated by setting
@@debug='d,syncpoint_NAME_TIMESTAMP', where NAME is given as an
argument and TIMESTAMP must match the value of @@session.timestamp
for the thread. When activated, the sync point will emit the
signal "reached_NAME_TIMESTAMP", and wait for the signal
"continue_NAME_TIMESTAMP".
@param[in] NAME The name of the debug symbol. This should indicate
the logical point in time in the code flow where it
appears. Usually it should have the form "before_EVENT" or
"after_EVENT", where EVENT identifies something that the code
does. EVENT might for instance be the name of a function in the
source code. The sync point might be reused by multiple tests, so
the name should relate to what the server does and not the test
scenario.
@param[in] TIMESTAMP The timestamp. Only threads where the session
variable @@session.timestamp is set to TIMESTAMP will be
affected. TIMESTAMP will be appended to the debug symbol, to the
signals that the sync point emits and waits for.
*/
#define CONDITIONAL_SYNC_POINT_FOR_TIMESTAMP(NAME) \
conditional_sync_point_for_timestamp(NAME)
#else /* defined(ENABLED_DEBUG_SYNC) */
#define DEBUG_SYNC(_thd_, _sync_point_name_) /* disabled DEBUG_SYNC */
#define DBUG_SIGNAL_WAIT_FOR(T, A, B, C) \
do { \
} while (0)
#define CONDITIONAL_SYNC_POINT(NAME)
#define CONDITIONAL_SYNC_POINT_FOR_TIMESTAMP(NAME)
#endif /* defined(ENABLED_DEBUG_SYNC) */
#endif /* DEBUG_SYNC_INCLUDED */