~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/definitions.h

  • Committer: Brian Aker
  • Date: 2008-10-30 05:49:59 UTC
  • mfrom: (520.4.29 devel)
  • Revision ID: brian@tangent.org-20081030054959-7tlt3rxzbtl1lyin
Merge Monty's work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
476
476
  , OPT_GLOBAL
477
477
};
478
478
 
 
479
 
479
480
typedef uint64_t query_id_t;
480
481
 
 
482
/**
 
483
   The maximum is defined as (ULONG_MAX/1000) with 4 bytes uint32_t
 
484
*/
 
485
const uint32_t SLAVE_MAX_HEARTBEAT_PERIOD= 4294967;
 
486
 
 
487
#define SLAVE_NET_TIMEOUT  3600
 
488
 
 
489
#define MAX_SLAVE_ERROR    2000
 
490
 
 
491
/* masks for start/stop operations on io and sql slave threads */
 
492
#define SLAVE_IO  1
 
493
#define SLAVE_SQL 2
 
494
 
481
495
#endif /* DRIZZLE_SERVER_DEFINITIONS_H */