MySQL 9.3.0
Source Code Documentation
pfs_services.h
Go to the documentation of this file.
1/* Copyright (c) 2017, 2025, 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
53
54extern SERVICE_TYPE(psi_cond_v1)
55 SERVICE_IMPLEMENTATION(performance_schema, psi_cond_v1);
56extern SERVICE_TYPE(psi_error_v1)
57 SERVICE_IMPLEMENTATION(performance_schema, psi_error_v1);
58extern SERVICE_TYPE(psi_file_v2)
59 SERVICE_IMPLEMENTATION(performance_schema, psi_file_v2);
60extern SERVICE_TYPE(psi_idle_v1)
61 SERVICE_IMPLEMENTATION(performance_schema, psi_idle_v1);
62extern SERVICE_TYPE(psi_mdl_v1)
63 SERVICE_IMPLEMENTATION(performance_schema, psi_mdl_v1);
64extern SERVICE_TYPE(psi_mdl_v2)
65 SERVICE_IMPLEMENTATION(performance_schema, psi_mdl_v2);
66extern SERVICE_TYPE(psi_mdl_v3)
67 SERVICE_IMPLEMENTATION(performance_schema, psi_mdl_v3);
68extern SERVICE_TYPE(psi_memory_v2)
69 SERVICE_IMPLEMENTATION(performance_schema, psi_memory_v2);
70extern SERVICE_TYPE(psi_metric_v1)
71 SERVICE_IMPLEMENTATION(performance_schema, psi_metric_v1);
72extern SERVICE_TYPE(psi_mutex_v1)
73 SERVICE_IMPLEMENTATION(performance_schema, psi_mutex_v1);
74extern SERVICE_TYPE(psi_rwlock_v2)
75 SERVICE_IMPLEMENTATION(performance_schema, psi_rwlock_v2);
76extern SERVICE_TYPE(psi_socket_v1)
77 SERVICE_IMPLEMENTATION(performance_schema, psi_socket_v1);
78extern SERVICE_TYPE(psi_stage_v1)
79 SERVICE_IMPLEMENTATION(performance_schema, psi_stage_v1);
80extern SERVICE_TYPE(psi_statement_v5)
81 SERVICE_IMPLEMENTATION(performance_schema, psi_statement_v5);
82extern SERVICE_TYPE(psi_system_v1)
83 SERVICE_IMPLEMENTATION(performance_schema, psi_system_v1);
84extern SERVICE_TYPE(psi_table_v1)
85 SERVICE_IMPLEMENTATION(performance_schema, psi_table_v1);
86extern SERVICE_TYPE(psi_thread_v4)
87 SERVICE_IMPLEMENTATION(performance_schema, psi_thread_v4);
88extern SERVICE_TYPE(psi_thread_v5)
89 SERVICE_IMPLEMENTATION(performance_schema, psi_thread_v5);
90extern SERVICE_TYPE(psi_thread_v6)
91 SERVICE_IMPLEMENTATION(performance_schema, psi_thread_v6);
92extern SERVICE_TYPE(psi_thread_v7)
93 SERVICE_IMPLEMENTATION(performance_schema, psi_thread_v7);
94extern SERVICE_TYPE(psi_transaction_v1)
95 SERVICE_IMPLEMENTATION(performance_schema, psi_transaction_v1);
96extern SERVICE_TYPE(psi_tls_channel_v1)
97 SERVICE_IMPLEMENTATION(performance_schema, psi_tls_channel_v1);
98extern SERVICE_TYPE(mysql_server_telemetry_logs)
99 SERVICE_IMPLEMENTATION(performance_schema, mysql_server_telemetry_logs);
100extern SERVICE_TYPE(mysql_server_telemetry_logs_client)
101 SERVICE_IMPLEMENTATION(performance_schema,
102 mysql_server_telemetry_logs_client);
103extern SERVICE_TYPE(mysql_server_telemetry_traces_v1)
104 SERVICE_IMPLEMENTATION(performance_schema,
105 mysql_server_telemetry_traces_v1);
106extern SERVICE_TYPE(mysql_server_telemetry_metrics_v1)
107 SERVICE_IMPLEMENTATION(performance_schema,
108 mysql_server_telemetry_metrics_v1);
109extern SERVICE_TYPE(pfs_notification_v3)
110 SERVICE_IMPLEMENTATION(mysql_server, pfs_notification_v3);
111extern SERVICE_TYPE(pfs_resource_group_v3)
112 SERVICE_IMPLEMENTATION(mysql_server, pfs_resource_group_v3);
113
114#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