~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/thr_lock.cc

  • Committer: Andrew Hutchings
  • Date: 2011-02-02 12:51:57 UTC
  • mto: (2157.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2158.
  • Revision ID: andrew@linuxjedi.co.uk-20110202125157-r6thh7ox4g9l90ec
Make transaction_message_threshold a read-only global variable instead of a per-session variable
Make replication_dictionary column lengths use transation_message_threshold

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
 
53
53
*/
54
54
 
55
 
#include <config.h>
56
 
#include <drizzled/internal/my_sys.h>
57
 
#include <drizzled/internal/thread_var.h>
58
 
#include <drizzled/statistics_variables.h>
59
 
#include <drizzled/pthread_globals.h>
 
55
#include "config.h"
 
56
#include "drizzled/internal/my_sys.h"
 
57
#include "drizzled/internal/thread_var.h"
 
58
#include "drizzled/statistics_variables.h"
 
59
#include "drizzled/pthread_globals.h"
60
60
 
61
 
#include <drizzled/session.h>
 
61
#include "drizzled/session.h"
62
62
 
63
63
#include "thr_lock.h"
64
 
#include <drizzled/internal/m_string.h>
 
64
#include "drizzled/internal/m_string.h"
65
65
#include <errno.h>
66
66
#include <list>
67
67
 
91
91
 
92
92
uint64_t max_write_lock_count= UINT64_MAX;
93
93
 
 
94
void thr_multi_unlock(THR_LOCK_DATA **data,uint32_t count);
 
95
 
94
96
/*
95
97
** For the future (now the thread specific cond is alloced by my_pthread.c)
96
98
*/