MySQL 9.1.0
Source Code Documentation
|
Events stages data structures (implementation). More...
#include "storage/perfschema/pfs_events_stages.h"
#include <assert.h>
#include <atomic>
#include "m_string.h"
#include "my_compiler.h"
#include "my_inttypes.h"
#include "my_sys.h"
#include "storage/perfschema/pfs_account.h"
#include "storage/perfschema/pfs_buffer_container.h"
#include "storage/perfschema/pfs_builtin_memory.h"
#include "storage/perfschema/pfs_global.h"
#include "storage/perfschema/pfs_host.h"
#include "storage/perfschema/pfs_instr.h"
#include "storage/perfschema/pfs_instr_class.h"
#include "storage/perfschema/pfs_user.h"
Functions | |
int | init_events_stages_history_long (uint events_stages_history_long_sizing) |
Initialize table EVENTS_STAGES_HISTORY_LONG. More... | |
void | cleanup_events_stages_history_long () |
Cleanup table EVENTS_STAGES_HISTORY_LONG. More... | |
static void | copy_events_stages (PFS_events_stages *dest, const PFS_events_stages *source) |
void | insert_events_stages_history (PFS_thread *thread, PFS_events_stages *stage) |
Insert a stage record in table EVENTS_STAGES_HISTORY. More... | |
void | insert_events_stages_history_long (PFS_events_stages *stage) |
Insert a stage record in table EVENTS_STAGES_HISTORY_LONG. More... | |
static void | fct_reset_events_stages_current (PFS_thread *pfs) |
void | reset_events_stages_current () |
Reset table EVENTS_STAGES_CURRENT data. More... | |
static void | fct_reset_events_stages_history (PFS_thread *pfs_thread) |
void | reset_events_stages_history () |
Reset table EVENTS_STAGES_HISTORY data. More... | |
void | reset_events_stages_history_long () |
Reset table EVENTS_STAGES_HISTORY_LONG data. More... | |
static void | fct_reset_events_stages_by_thread (PFS_thread *thread) |
void | reset_events_stages_by_thread () |
Reset table EVENTS_STAGES_SUMMARY_BY_THREAD_BY_EVENT_NAME data. More... | |
static void | fct_reset_events_stages_by_account (PFS_account *pfs) |
void | reset_events_stages_by_account () |
Reset table EVENTS_STAGES_SUMMARY_BY_ACCOUNT_BY_EVENT_NAME data. More... | |
static void | fct_reset_events_stages_by_user (PFS_user *pfs) |
void | reset_events_stages_by_user () |
Reset table EVENTS_STAGES_SUMMARY_BY_USER_BY_EVENT_NAME data. More... | |
static void | fct_reset_events_stages_by_host (PFS_host *pfs) |
void | reset_events_stages_by_host () |
Reset table EVENTS_STAGES_SUMMARY_BY_HOST_BY_EVENT_NAME data. More... | |
void | reset_events_stages_global () |
Reset table EVENTS_STAGES_GLOBAL_BY_EVENT_NAME data. More... | |
Variables | |
PFS_ALIGNED ulong | events_stages_history_long_size = 0 |
PFS_ALIGNED bool | flag_events_stages_current = false |
Consumer flag for table EVENTS_STAGES_CURRENT. More... | |
PFS_ALIGNED bool | flag_events_stages_history = false |
Consumer flag for table EVENTS_STAGES_HISTORY. More... | |
PFS_ALIGNED bool | flag_events_stages_history_long = false |
Consumer flag for table EVENTS_STAGES_HISTORY_LONG. More... | |
PFS_ALIGNED bool | events_stages_history_long_full = false |
True if EVENTS_STAGES_HISTORY_LONG circular buffer is full. More... | |
PFS_ALIGNED PFS_cacheline_atomic_uint32 | events_stages_history_long_index |
Index in EVENTS_STAGES_HISTORY_LONG circular buffer. More... | |
PFS_ALIGNED PFS_events_stages * | events_stages_history_long_array = nullptr |
EVENTS_STAGES_HISTORY_LONG circular buffer. More... | |
Events stages data structures (implementation).
void cleanup_events_stages_history_long | ( | ) |
Cleanup table EVENTS_STAGES_HISTORY_LONG.
|
inlinestatic |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
int init_events_stages_history_long | ( | uint | events_stages_history_long_sizing | ) |
Initialize table EVENTS_STAGES_HISTORY_LONG.
events_stages_history_long_sizing | table sizing |
void insert_events_stages_history | ( | PFS_thread * | thread, |
PFS_events_stages * | stage | ||
) |
Insert a stage record in table EVENTS_STAGES_HISTORY.
thread | thread that executed the wait |
stage | record to insert |
void insert_events_stages_history_long | ( | PFS_events_stages * | stage | ) |
Insert a stage record in table EVENTS_STAGES_HISTORY_LONG.
stage | record to insert |
void reset_events_stages_by_account | ( | ) |
Reset table EVENTS_STAGES_SUMMARY_BY_ACCOUNT_BY_EVENT_NAME data.
void reset_events_stages_by_host | ( | ) |
Reset table EVENTS_STAGES_SUMMARY_BY_HOST_BY_EVENT_NAME data.
void reset_events_stages_by_thread | ( | ) |
Reset table EVENTS_STAGES_SUMMARY_BY_THREAD_BY_EVENT_NAME data.
void reset_events_stages_by_user | ( | ) |
Reset table EVENTS_STAGES_SUMMARY_BY_USER_BY_EVENT_NAME data.
void reset_events_stages_current | ( | ) |
Reset table EVENTS_STAGES_CURRENT data.
void reset_events_stages_global | ( | ) |
Reset table EVENTS_STAGES_GLOBAL_BY_EVENT_NAME data.
void reset_events_stages_history | ( | ) |
Reset table EVENTS_STAGES_HISTORY data.
void reset_events_stages_history_long | ( | ) |
Reset table EVENTS_STAGES_HISTORY_LONG data.
PFS_ALIGNED PFS_events_stages* events_stages_history_long_array = nullptr |
EVENTS_STAGES_HISTORY_LONG circular buffer.
PFS_ALIGNED bool events_stages_history_long_full = false |
True if EVENTS_STAGES_HISTORY_LONG circular buffer is full.
PFS_ALIGNED PFS_cacheline_atomic_uint32 events_stages_history_long_index |
Index in EVENTS_STAGES_HISTORY_LONG circular buffer.
PFS_ALIGNED ulong events_stages_history_long_size = 0 |
PFS_ALIGNED bool flag_events_stages_current = false |
Consumer flag for table EVENTS_STAGES_CURRENT.
PFS_ALIGNED bool flag_events_stages_history = false |
Consumer flag for table EVENTS_STAGES_HISTORY.
PFS_ALIGNED bool flag_events_stages_history_long = false |
Consumer flag for table EVENTS_STAGES_HISTORY_LONG.