~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/rpl_constants.h

  • Committer: Monty Taylor
  • Date: 2008-07-09 16:33:52 UTC
  • mto: (77.6.1 glibclient-merge)
  • mto: This revision was merged to the branch mainline in revision 112.
  • Revision ID: monty@inaugust.com-20080709163352-yv7jbu81frc1l4ec
Finished the warnings work!

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef RPL_CONSTANTS_H
 
2
#define RPL_CONSTANTS_H
 
3
 
 
4
/**
 
5
   Enumeration of the incidents that can occur for the server.
 
6
 */
 
7
enum Incident {
 
8
  /** No incident */
 
9
  INCIDENT_NONE,
 
10
 
 
11
  /** There are possibly lost events in the replication stream */
 
12
  INCIDENT_LOST_EVENTS,
 
13
 
 
14
  /** Shall be last event of the enumeration */
 
15
  INCIDENT_COUNT
 
16
};
 
17
 
 
18
#endif /* RPL_CONSTANTS_H */