~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/module.cc

  • Committer: Brian Aker
  • Date: 2011-02-22 06:12:02 UTC
  • mfrom: (2190.1.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110222061202-k03czxykqy4x9hjs
List update, header fixes, multiple symbols, and David deletes some code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
#include "data_dictionary_schema.h"
39
39
#include "print_transaction_message.h"
40
40
#include "hexdump_transaction_message.h"
41
 
#include "background_worker.h"
42
41
 
43
42
#include <errno.h>
44
43
 
230
229
    hexdump_transaction_message_func_factory=
231
230
      new plugin::Create_function<HexdumpTransactionMessageFunction>("hexdump_transaction_message");
232
231
    context.add(hexdump_transaction_message_func_factory);
233
 
 
234
 
    /* 
235
 
     * Setup the background worker thread which maintains
236
 
     * summary information about the transaction log.
237
 
     */
238
 
    if (initTransactionLogBackgroundWorker())
239
 
      return 1; /* Error message output handled in function above */
240
232
  }
241
233
  return 0;
242
234
}