-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpinlock.h
113 lines (92 loc) · 2.11 KB
/
Spinlock.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
/*
* Ceph - scalable distributed file system
*
* Copyright (C) 2013 Inktank
*
* This is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software
* Foundation. See file COPYING.
*
* @author Sage Weil <[email protected]>
*/
#ifndef CEPH_SPINLOCK_H
#define CEPH_SPINLOCK_H
#include "acconfig.h"
#include <pthread.h>
typedef struct {
#ifdef HAVE_PTHREAD_SPINLOCK
pthread_spinlock_t lock;
#else
pthread_mutex_t lock;
#endif
} ceph_spinlock_t;
#ifdef HAVE_PTHREAD_SPINLOCK
static inline int ceph_spin_init(ceph_spinlock_t *l)
{
return pthread_spin_init(&l->lock, PTHREAD_PROCESS_PRIVATE);
}
static inline int ceph_spin_destroy(ceph_spinlock_t *l)
{
return pthread_spin_destroy(&l->lock);
}
static inline int ceph_spin_lock(ceph_spinlock_t *l)
{
return pthread_spin_lock(&l->lock);
}
static inline int ceph_spin_unlock(ceph_spinlock_t *l)
{
return pthread_spin_unlock(&l->lock);
}
#else /* !HAVE_PTHREAD_SPINLOCK */
static inline int ceph_spin_init(ceph_spinlock_t *l)
{
return pthread_mutex_init(&l->lock, NULL);
}
static inline int ceph_spin_destroy(ceph_spinlock_t *l)
{
return pthread_mutex_destroy(&l->lock);
}
static inline int ceph_spin_lock(ceph_spinlock_t *l)
{
return pthread_mutex_lock(&l->lock);
}
static inline int ceph_spin_unlock(ceph_spinlock_t *l)
{
return pthread_mutex_unlock(&l->lock);
}
#endif
class Spinlock {
mutable ceph_spinlock_t _lock;
public:
Spinlock() {
ceph_spin_init(&_lock);
}
~Spinlock() {
ceph_spin_destroy(&_lock);
}
// don't allow copying.
void operator=(Spinlock& s);
Spinlock(const Spinlock& s);
/// acquire spinlock
void lock() const {
ceph_spin_lock(&_lock);
}
/// release spinlock
void unlock() const {
ceph_spin_unlock(&_lock);
}
class Locker {
const Spinlock& spinlock;
public:
Locker(const Spinlock& s) : spinlock(s) {
spinlock.lock();
}
~Locker() {
spinlock.unlock();
}
};
};
#endif