~jaypipes/drizzle/transaction_log

« back to all changes in this revision

Viewing changes to mysys/iocache.h

  • Committer: Jay Pipes
  • Date: 2009-12-22 03:07:38 UTC
  • mfrom: (1143.14.85 build)
  • Revision ID: jpipes@serialcoder-20091222030738-gnb0vyg77fmkt4cj
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
132
132
  void* arg;        /* for use by pre/post_read */
133
133
  char *file_name;      /* if used with 'open_cached_file' */
134
134
  char *dir,*prefix;
135
 
  File file; /* file descriptor */
 
135
  int file; /* file descriptor */
136
136
  /*
137
137
    seek_not_done is set by my_b_seek() to inform the upcoming read/write
138
138
    operation that a seek needs to be preformed prior to the actual I/O
164
164
#endif
165
165
} IO_CACHE;
166
166
 
167
 
extern int init_io_cache(IO_CACHE *info,File file,size_t cachesize,
 
167
extern int init_io_cache(IO_CACHE *info,int file,size_t cachesize,
168
168
                         enum cache_type type,my_off_t seek_offset,
169
169
                         bool use_async_io, myf cache_myflags);
170
170
extern bool reinit_io_cache(IO_CACHE *info,enum cache_type type,