~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_sys.h

Merge Stewart's dead code removal

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
#define MY_LINK_WARNING 32      /* my_redel() gives warning if links */
61
61
#define MY_COPYTIME     64      /* my_redel() copys time */
62
62
#define MY_DELETE_OLD   256     /* my_create_with_symlink() */
63
 
#define MY_RESOLVE_LINK 128     /* my_realpath(); Only resolve links */
64
63
#define MY_HOLD_ORIGINAL_MODES 128  /* my_copy() holds to file modes */
65
64
#define MY_REDEL_MAKE_BACKUP 256
66
65
#define MY_DONT_WAIT    64      /* my_lock() don't wait if can't lock */
117
116
#define GETDATE_FIXEDLENGTH     16
118
117
 
119
118
        /* defines when allocating data */
120
 
#define my_checkmalloc()
121
119
#undef TERMINATE
122
120
#define TERMINATE(A,B) {}
123
121
 
242
240
   ((info)->read_pos++, (int) (unsigned char) (info)->read_pos[-1]) :\
243
241
   _my_b_get(info))
244
242
 
245
 
#define my_b_fill_cache(info) \
246
 
  (((info)->read_end=(info)->read_pos),(*(info)->read_function)(info,0,0))
247
 
 
248
243
#define my_b_tell(info) ((info)->pos_in_file + \
249
244
                         (size_t) (*(info)->current_pos - (info)->request_pos))
250
245
 
251
246
#define my_b_get_buffer_start(info) (info)->request_pos
252
 
#define my_b_get_bytes_in_buffer(info) (char*) (info)->read_end -   \
253
 
  (char*) my_b_get_buffer_start(info)
254
 
#define my_b_get_pos_in_file(info) (info)->pos_in_file
255
247
 
256
248
 
257
249
#define my_b_bytes_in_cache(info) (size_t) (*(info)->current_end - \
379
371
 
380
372
#define alloc_root_inited(A) ((A)->min_malloc != 0)
381
373
#define ALLOC_ROOT_MIN_BLOCK_SIZE (MALLOC_OVERHEAD + sizeof(USED_MEM) + 8)
382
 
#define clear_alloc_root(A) do { (A)->free= (A)->used= (A)->pre_alloc= 0; (A)->min_malloc=0;} while(0)
383
374
extern int get_defaults_options(int argc, char **argv,
384
375
                                char **defaults, char **extra_defaults,
385
376
                                char **group_suffix);