~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/write_buffer.h

  • Committer: Brian Aker
  • Date: 2011-03-14 05:40:28 UTC
  • Revision ID: brian@tangent.org-20110314054028-jhey35e5la4nfl4w
Mass removal of ifdef/endif in favor of pragma once.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 * Defines a simple structure for maintaining a write buffer.
29
29
 */
30
30
 
31
 
#ifndef PLUGIN_TRANSACTION_LOG_WRITE_BUFFER_H
32
 
#define PLUGIN_TRANSACTION_LOG_WRITE_BUFFER_H
 
31
#pragma once
33
32
 
34
33
#include <stdint.h>
35
34
#include <vector>
87
86
  pthread_mutex_t latch; ///< Lock around the synchronized parts of the log (the write buffer)
88
87
};
89
88
 
90
 
#endif /* PLUGIN_TRANSACTION_LOG_WRITE_BUFFER_H */