1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fixes for MyISAM and packed keys + AIX

This commit is contained in:
monty@donna.mysql.com
2000-09-22 01:46:26 +03:00
parent 13b3c3280e
commit 50486eeb80
12 changed files with 71 additions and 46 deletions

View File

@ -503,15 +503,15 @@ extern int pthread_dummy(int);
struct st_my_thread_var
{
int thr_errno;
int cmp_length;
volatile int abort;
long id;
pthread_cond_t suspend, *current_cond;
pthread_mutex_t mutex, *current_mutex;
pthread_t pthread_self;
long id;
int cmp_length;
volatile int abort;
#ifndef DBUG_OFF
char name[THREAD_NAME_SIZE+1];
gptr dbug;
char name[THREAD_NAME_SIZE+1];
#endif
};