diff options
author | Sergei Golubchik <sergii@pisem.net> | 2011-07-13 21:10:18 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2011-07-13 21:10:18 +0200 |
commit | a8446356373e84530a4c83759370178ec2bce571 (patch) | |
tree | 51b83e92f9aa489a3308a6ea66546e06ae025689 /include/maria.h | |
parent | aac3a1eac9f6aa347311e7cce7547e269bed5ea0 (diff) | |
download | mariadb-git-a8446356373e84530a4c83759370178ec2bce571.tar.gz |
use PSI wrappers in aria and other non-MySQL code
Diffstat (limited to 'include/maria.h')
-rw-r--r-- | include/maria.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/maria.h b/include/maria.h index 7eae8ae0430..f3d75214095 100644 --- a/include/maria.h +++ b/include/maria.h @@ -174,7 +174,7 @@ typedef struct st_maria_key /* Internal info about a key */ typedef struct st_maria_keydef /* Key definition with open & info */ { struct st_maria_share *share; /* Pointer to base (set in open) */ - rw_lock_t root_lock; /* locking of tree */ + mysql_rwlock_t root_lock; /* locking of tree */ uint16 keysegs; /* Number of key-segment */ uint16 flag; /* NOSAME, PACK_USED */ @@ -355,8 +355,8 @@ typedef struct st_maria_bit_buff typedef struct st_maria_sort_info { /* sync things */ - pthread_mutex_t mutex; - pthread_cond_t cond; + mysql_mutex_t mutex; + mysql_cond_t cond; MARIA_HA *info, *new_info; HA_CHECK *param; char *buff; |