diff options
author | unknown <iggy@recycle.(none)> | 2007-03-20 10:54:56 -0400 |
---|---|---|
committer | unknown <iggy@recycle.(none)> | 2007-03-20 10:54:56 -0400 |
commit | 14655649efeef29a47c3ef6527806ab7d2ea5ae7 (patch) | |
tree | 89d98cdcae5530c2708979517d9dc11f32fc471f /include/my_sys.h | |
parent | feb2be208341ea249c22f360181963786b1e3e24 (diff) | |
parent | 6fb66342b36d0a5e3ed3aea53b86fc6d719a9cd9 (diff) | |
download | mariadb-git-14655649efeef29a47c3ef6527806ab7d2ea5ae7.tar.gz |
Merge recycle.(none):/src/bug23736/my50-bug23736
into recycle.(none):/src/bug23736/my51-bug23736
client/mysqlbinlog.cc:
Auto merged
include/my_sys.h:
Auto merged
mysys/array.c:
Auto merged
mysys/mf_tempdir.c:
Manual Merge.
Diffstat (limited to 'include/my_sys.h')
-rw-r--r-- | include/my_sys.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/include/my_sys.h b/include/my_sys.h index 8e831b448d7..cff8c73c9ff 100644 --- a/include/my_sys.h +++ b/include/my_sys.h @@ -312,8 +312,17 @@ struct st_my_file_info extern struct st_my_file_info *my_file_info; +typedef struct st_dynamic_array +{ + char *buffer; + uint elements,max_element; + uint alloc_increment; + uint size_of_element; +} DYNAMIC_ARRAY; + typedef struct st_my_tmpdir { + DYNAMIC_ARRAY full_list; char **list; uint cur, max; #ifdef THREAD @@ -321,14 +330,6 @@ typedef struct st_my_tmpdir #endif } MY_TMPDIR; -typedef struct st_dynamic_array -{ - char *buffer; - uint elements,max_element; - uint alloc_increment; - uint size_of_element; -} DYNAMIC_ARRAY; - typedef struct st_dynamic_string { char *str; |