summaryrefslogtreecommitdiff
path: root/storage/perfschema
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2021-08-31 11:00:41 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2021-08-31 11:00:41 +0300
commite94172c2a07f21118d26e4cde0c48a2fd536cf06 (patch)
tree81d6b9b67c696e93abb618df35ab5a27094f6e31 /storage/perfschema
parent7271cf48d62196abc0c578d00ab3ca09b56aae77 (diff)
parente62120cec7aa21b9cf77773ecb0935b4b48ed26c (diff)
downloadmariadb-git-e94172c2a07f21118d26e4cde0c48a2fd536cf06.tar.gz
Merge 10.5 into 10.6
Diffstat (limited to 'storage/perfschema')
-rw-r--r--storage/perfschema/pfs.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/perfschema/pfs.cc b/storage/perfschema/pfs.cc
index 3e9198a6b6c..d7cac927d30 100644
--- a/storage/perfschema/pfs.cc
+++ b/storage/perfschema/pfs.cc
@@ -1826,7 +1826,7 @@ void pfs_register_socket_v1(const char *category,
@sa PSI_v1::init_mutex.
*/
PSI_mutex*
-pfs_init_mutex_v1(PSI_mutex_key key, const void *identity)
+pfs_init_mutex_v1(PSI_mutex_key key, void *identity)
{
INIT_BODY_V1(mutex, key, identity);
}
@@ -1849,7 +1849,7 @@ void pfs_destroy_mutex_v1(PSI_mutex* mutex)
@sa PSI_v1::init_rwlock.
*/
PSI_rwlock*
-pfs_init_rwlock_v1(PSI_rwlock_key key, const void *identity)
+pfs_init_rwlock_v1(PSI_rwlock_key key, void *identity)
{
INIT_BODY_V1(rwlock, key, identity);
}
@@ -1872,7 +1872,7 @@ void pfs_destroy_rwlock_v1(PSI_rwlock* rwlock)
@sa PSI_v1::init_cond.
*/
PSI_cond*
-pfs_init_cond_v1(PSI_cond_key key, const void *identity)
+pfs_init_cond_v1(PSI_cond_key key, void *identity)
{
INIT_BODY_V1(cond, key, identity);
}