MySQL 9.0.0
Source Code Documentation
pfs_services.h
Go to the documentation of this file.
1/* Copyright (c) 2017, 2024, Oracle and/or its affiliates.
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, version 2.0,
5 as published by the Free Software Foundation.
6
7 This program is designed to work with certain software (including
8 but not limited to OpenSSL) that is licensed under separate terms,
9 as designated in a particular file or component or in included license
10 documentation. The authors of MySQL hereby grant you an additional
11 permission to link the program and your derivative works with the
12 separately licensed software that they have either included with
13 the program or referenced in the documentation.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License, version 2.0, for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24#ifndef PFS_SERVICES_H
25#define PFS_SERVICES_H
26
28
29// pfs services
51
52extern SERVICE_TYPE(psi_cond_v1)
53 SERVICE_IMPLEMENTATION(performance_schema, psi_cond_v1);
54extern SERVICE_TYPE(psi_error_v1)
55 SERVICE_IMPLEMENTATION(performance_schema, psi_error_v1);
56extern SERVICE_TYPE(psi_file_v2)
57 SERVICE_IMPLEMENTATION(performance_schema, psi_file_v2);
58extern SERVICE_TYPE(psi_idle_v1)
59 SERVICE_IMPLEMENTATION(performance_schema, psi_idle_v1);
60extern SERVICE_TYPE(psi_mdl_v1)
61 SERVICE_IMPLEMENTATION(performance_schema, psi_mdl_v1);
62extern SERVICE_TYPE(psi_mdl_v2)
63 SERVICE_IMPLEMENTATION(performance_schema, psi_mdl_v2);
64extern SERVICE_TYPE(psi_memory_v2)
65 SERVICE_IMPLEMENTATION(performance_schema, psi_memory_v2);
66extern SERVICE_TYPE(psi_metric_v1)
67 SERVICE_IMPLEMENTATION(performance_schema, psi_metric_v1);
68extern SERVICE_TYPE(psi_mutex_v1)
69 SERVICE_IMPLEMENTATION(performance_schema, psi_mutex_v1);
70extern SERVICE_TYPE(psi_rwlock_v2)
71 SERVICE_IMPLEMENTATION(performance_schema, psi_rwlock_v2);
72extern SERVICE_TYPE(psi_socket_v1)
73 SERVICE_IMPLEMENTATION(performance_schema, psi_socket_v1);
74extern SERVICE_TYPE(psi_stage_v1)
75 SERVICE_IMPLEMENTATION(performance_schema, psi_stage_v1);
76extern SERVICE_TYPE(psi_statement_v5)
77 SERVICE_IMPLEMENTATION(performance_schema, psi_statement_v5);
78extern SERVICE_TYPE(psi_system_v1)
79 SERVICE_IMPLEMENTATION(performance_schema, psi_system_v1);
80extern SERVICE_TYPE(psi_table_v1)
81 SERVICE_IMPLEMENTATION(performance_schema, psi_table_v1);
82extern SERVICE_TYPE(psi_thread_v4)
83 SERVICE_IMPLEMENTATION(performance_schema, psi_thread_v4);
84extern SERVICE_TYPE(psi_thread_v5)
85 SERVICE_IMPLEMENTATION(performance_schema, psi_thread_v5);
86extern SERVICE_TYPE(psi_thread_v6)
87 SERVICE_IMPLEMENTATION(performance_schema, psi_thread_v6);
88extern SERVICE_TYPE(psi_transaction_v1)
89 SERVICE_IMPLEMENTATION(performance_schema, psi_transaction_v1);
90extern SERVICE_TYPE(psi_tls_channel_v1)
91 SERVICE_IMPLEMENTATION(performance_schema, psi_tls_channel_v1);
92extern SERVICE_TYPE(mysql_server_telemetry_traces_v1)
93 SERVICE_IMPLEMENTATION(performance_schema,
94 mysql_server_telemetry_traces_v1);
95extern SERVICE_TYPE(mysql_server_telemetry_metrics_v1)
96 SERVICE_IMPLEMENTATION(performance_schema,
97 mysql_server_telemetry_metrics_v1);
98extern SERVICE_TYPE(pfs_notification_v3)
99 SERVICE_IMPLEMENTATION(mysql_server, pfs_notification_v3);
100extern SERVICE_TYPE(pfs_resource_group_v3)
101 SERVICE_IMPLEMENTATION(mysql_server, pfs_resource_group_v3);
102
103#endif /* PFS_SERVICES_H */
const mysql_service_psi_cond_v1_t SERVICE_IMPLEMENTATION(performance_schema, psi_cond_v1)
#define SERVICE_TYPE(name)
Generates the standard Service type name.
Definition: service.h:76