~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/write_buffer.h

  • Committer: pcrews
  • Date: 2011-05-24 17:36:24 UTC
  • mfrom: (1099.4.232 drizzle)
  • Revision ID: pcrews@lucid32-20110524173624-mwr1bvq6fa1r01ao
Updated translations + 2011.05.18 tarball tag

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 */