diff options
author | unknown <monty@mishka.local> | 2005-05-13 13:36:02 +0300 |
---|---|---|
committer | unknown <monty@mishka.local> | 2005-05-13 13:36:02 +0300 |
commit | 2380fc937bda67bb09f156014f300ba932d318dd (patch) | |
tree | 47f6cbecec98d593d2113bac8fd5a8d368db0040 /include | |
parent | db416599ff293970e722f6c4992e3b66545e9dea (diff) | |
parent | b21cf962e381300def1bb91d33f6ab411c0c0cc4 (diff) | |
download | mariadb-git-2380fc937bda67bb09f156014f300ba932d318dd.tar.gz |
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into mishka.local:/home/my/mysql-5.0
mysql-test/r/group_min_max.result:
Auto merged
mysql-test/r/view.result:
Auto merged
mysql-test/t/view.test:
Auto merged
Diffstat (limited to 'include')
-rw-r--r-- | include/myisam.h | 6 | ||||
-rw-r--r-- | include/thr_lock.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/include/myisam.h b/include/myisam.h index e0eb8715aef..7d3f0e0c801 100644 --- a/include/myisam.h +++ b/include/myisam.h @@ -190,10 +190,10 @@ typedef struct st_columndef /* column information */ typedef void (* invalidator_by_filename)(const char * filename); extern my_string myisam_log_filename; /* Name of logfile */ -extern uint myisam_block_size; +extern ulong myisam_block_size; +extern ulong myisam_concurrent_insert; extern my_bool myisam_flush,myisam_delay_key_write,myisam_single_user; -extern my_bool myisam_concurrent_insert; -extern my_off_t myisam_max_temp_length,myisam_max_extra_temp_length; +extern my_off_t myisam_max_temp_length; extern ulong myisam_bulk_insert_tree_size, myisam_data_pointer_size; /* Prototypes for myisam-functions */ diff --git a/include/thr_lock.h b/include/thr_lock.h index 947b17bf2b6..dc4f9968cb7 100644 --- a/include/thr_lock.h +++ b/include/thr_lock.h @@ -88,10 +88,10 @@ typedef struct st_thr_lock { struct st_lock_list read; struct st_lock_list write_wait; struct st_lock_list write; -/* write_lock_count is incremented for write locks and reset on read locks */ + /* write_lock_count is incremented for write locks and reset on read locks */ ulong write_lock_count; uint read_no_write_count; - void (*get_status)(void*); /* When one gets a lock */ + void (*get_status)(void*, int); /* When one gets a lock */ void (*copy_status)(void*,void*); void (*update_status)(void*); /* Before release of write */ my_bool (*check_status)(void *); |