diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2021-08-31 13:03:09 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2021-08-31 13:03:09 +0300 |
commit | 9f779d34a13139d405b1c2cb9f2fcec95abc1fea (patch) | |
tree | c4244e32df98cce499978e241ac951d566212657 /include/mysql/psi/psi.h | |
parent | e5b16cf8dec403a576078bbf9f1b3eaf392fae2e (diff) | |
parent | e94172c2a07f21118d26e4cde0c48a2fd536cf06 (diff) | |
download | mariadb-git-bb-10.6-MDEV-25919.tar.gz |
Merge 10.6bb-10.6-MDEV-25919
Diffstat (limited to 'include/mysql/psi/psi.h')
-rw-r--r-- | include/mysql/psi/psi.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/mysql/psi/psi.h b/include/mysql/psi/psi.h index 958a086f05a..2d669070e54 100644 --- a/include/mysql/psi/psi.h +++ b/include/mysql/psi/psi.h @@ -1442,7 +1442,7 @@ typedef void (*register_socket_v1_t) @return an instrumented mutex */ typedef struct PSI_mutex* (*init_mutex_v1_t) - (PSI_mutex_key key, const void *identity); + (PSI_mutex_key key, void *identity); /** Mutex instrumentation destruction API. @@ -1457,7 +1457,7 @@ typedef void (*destroy_mutex_v1_t)(struct PSI_mutex *mutex); @return an instrumented rwlock */ typedef struct PSI_rwlock* (*init_rwlock_v1_t) - (PSI_rwlock_key key, const void *identity); + (PSI_rwlock_key key, void *identity); /** Rwlock instrumentation destruction API. @@ -1472,7 +1472,7 @@ typedef void (*destroy_rwlock_v1_t)(struct PSI_rwlock *rwlock); @return an instrumented cond */ typedef struct PSI_cond* (*init_cond_v1_t) - (PSI_cond_key key, const void *identity); + (PSI_cond_key key, void *identity); /** Cond instrumentation destruction API. |