/* Copyright (c) 2008, 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 */ #ifndef COMPONENTS_SERVICES_MYSQL_RWLOCK_H #define COMPONENTS_SERVICES_MYSQL_RWLOCK_H #include #include #define REQUIRES_MYSQL_RWLOCK_SERVICE REQUIRES_SERVICE(mysql_rwlock_v1) #define REQUIRES_MYSQL_RWLOCK_SERVICE_PLACEHOLDER \ REQUIRES_SERVICE_PLACEHOLDER(mysql_rwlock_v1) extern REQUIRES_MYSQL_RWLOCK_SERVICE_PLACEHOLDER; #define MYSQL_RWLOCK_CALL(M) mysql_service_mysql_rwlock_v1->M #define mysql_rwlock_register(P1, P2, P3) \ MYSQL_RWLOCK_CALL(register_info)(P1, P2, P3) #define mysql_rwlock_init(K, T) \ mysql_rwlock_init_with_src(K, T, __FILE__, __LINE__) #define mysql_rwlock_init_with_src(K, T, F, L) \ MYSQL_RWLOCK_CALL(rwlock_init)(K, T, F, L) #define mysql_prlock_init(K, T) \ mysql_prlock_init_with_src(K, T, __FILE__, __LINE__) #define mysql_prlock_init_with_src(K, T, F, L) \ MYSQL_RWLOCK_CALL(prlock_init)(K, T, F, L) #define mysql_rwlock_destroy(T) \ mysql_rwlock_destroy_with_src(T, __FILE__, __LINE__) #define mysql_rwlock_destroy_with_src(T, F, L) \ MYSQL_RWLOCK_CALL(rwlock_destroy)(T, F, L) #define mysql_prlock_destroy(T) \ mysql_prlock_destroy_with_src(T, __FILE__, __LINE__) #define mysql_prlock_destroy_with_src(T, F, L) \ MYSQL_RWLOCK_CALL(prlock_destroy)(T, F, L) #define mysql_rwlock_rdlock(T) \ mysql_rwlock_rdlock_with_src(T, __FILE__, __LINE__) #define mysql_rwlock_rdlock_with_src(T, F, L) \ MYSQL_RWLOCK_CALL(rwlock_rdlock)(T, F, L) #define mysql_prlock_rdlock(T) \ mysql_prlock_rdlock_with_src(T, __FILE__, __LINE__) #define mysql_prlock_rdlock_with_src(T, F, L) \ MYSQL_RWLOCK_CALL(prlock_rdlock)(T, F, L) #define mysql_rwlock_wrlock(T) \ mysql_rwlock_wrlock_with_src(T, __FILE__, __LINE__) #define mysql_rwlock_wrlock_with_src(T, F, L) \ MYSQL_RWLOCK_CALL(rwlock_wrlock)(T, F, L) #define mysql_prlock_wrlock(T) \ mysql_prlock_wrlock_with_src(T, __FILE__, __LINE__) #define mysql_prlock_wrlock_with_src(T, F, L) \ MYSQL_RWLOCK_CALL(prlock_wrlock)(T, F, L) #define mysql_rwlock_tryrdlock(T) \ mysql_rwlock_tryrdlock_with_src(T, __FILE__, __LINE__) #define mysql_rwlock_tryrdlock_with_src(T, F, L) \ MYSQL_RWLOCK_CALL(rwlock_tryrdlock)(T, F, L) #define mysql_rwlock_trywrlock(T) \ mysql_rwlock_trywrlock_with_src(T, __FILE__, __LINE__) #define mysql_rwlock_trywrlock_with_src(T, F, L) \ MYSQL_RWLOCK_CALL(rwlock_trywrlock)(T, F, L) #define mysql_rwlock_unlock(T) \ mysql_rwlock_unlock_with_src(T, __FILE__, __LINE__) #define mysql_rwlock_unlock_with_src(T, F, L) \ MYSQL_RWLOCK_CALL(rwlock_unlock)(T, F, L) #define mysql_prlock_unlock(T) \ mysql_prlock_unlock_with_src(T, __FILE__, __LINE__) #define mysql_prlock_unlock_with_src(T, F, L) \ MYSQL_RWLOCK_CALL(prlock_unlock)(T, F, L) #endif /* COMPONENTS_SERVICES_MYSQL_RWLOCK_H */