~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/thr_lock.h

  • Committer: Monty Taylor
  • Date: 2010-10-12 20:20:44 UTC
  • mto: (1842.1.3 build) (1843.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1843.
  • Revision ID: mordred@inaugust.com-20101012202044-yfrmnmkznvkqfxe4
Added support for valgrind suppressions.
Run strip-valgrind as part of make valgrind.

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
 
 
25
 
#include "drizzled/visibility.h"
 
24
#include <pthread.h>
26
25
 
27
26
namespace drizzled
28
27
{
75
74
 
76
75
struct THR_LOCK_INFO
77
76
{
 
77
  pthread_t thread;
78
78
  uint64_t thread_id;
79
79
  uint32_t n_cursors;
80
80
 
81
81
  THR_LOCK_INFO() : 
 
82
    thread(0),
82
83
    thread_id(0),
83
84
    n_cursors(0)
84
85
  { }
106
107
struct THR_LOCK;
107
108
struct THR_LOCK_DATA;
108
109
 
109
 
struct DRIZZLED_API THR_LOCK_DATA {
 
110
struct THR_LOCK_DATA {
110
111
  THR_LOCK_OWNER *owner;
111
112
  struct THR_LOCK_DATA *next,**prev;
112
113
  struct THR_LOCK *lock;
184
185
  }
185
186
};
186
187
 
187
 
class Session; 
188
188
 
189
189
#define thr_lock_owner_init(owner, info_arg) (owner)->info= (info_arg)
190
 
DRIZZLED_API void thr_lock_init(THR_LOCK *lock);
191
 
enum enum_thr_lock_result thr_multi_lock(Session &session, THR_LOCK_DATA **data,
 
190
void thr_lock_info_init(THR_LOCK_INFO *info);
 
191
void thr_lock_init(THR_LOCK *lock);
 
192
enum enum_thr_lock_result thr_multi_lock(THR_LOCK_DATA **data,
192
193
                                         uint32_t count, THR_LOCK_OWNER *owner);
193
194
void thr_multi_unlock(THR_LOCK_DATA **data,uint32_t count);
194
195