~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/thr_lock.h

  • Committer: Brian Aker
  • Date: 2010-11-27 13:42:52 UTC
  • mfrom: (1954.1.4 refactor)
  • Revision ID: brian@tangent.org-20101127134252-saoy83851uoait87
remove dead code around old locks

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#include <boost/thread/mutex.hpp>
22
22
#include <boost/thread/shared_mutex.hpp>
23
23
#include <boost/thread/condition_variable.hpp>
24
 
#include <pthread.h>
25
24
 
26
25
namespace drizzled
27
26
{
74
73
 
75
74
struct THR_LOCK_INFO
76
75
{
77
 
  pthread_t thread;
78
76
  uint64_t thread_id;
79
77
  uint32_t n_cursors;
80
78
 
81
79
  THR_LOCK_INFO() : 
82
 
    thread(0),
83
80
    thread_id(0),
84
81
    n_cursors(0)
85
82
  { }