Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F13115799
D6535.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
D6535.diff
View Options
diff --git a/src/Makefile.am b/src/Makefile.am
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -202,7 +202,6 @@
randomenv.h \
rcu.h \
reverse_iterator.h \
- reverselock.h \
rpc/blockchain.h \
rpc/client.h \
rpc/command.h \
diff --git a/src/reverselock.h b/src/reverselock.h
deleted file mode 100644
--- a/src/reverselock.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright (c) 2015-2016 The Bitcoin Core developers
-// Distributed under the MIT software license, see the accompanying
-// file COPYING or http://www.opensource.org/licenses/mit-license.php.
-
-#ifndef BITCOIN_REVERSELOCK_H
-#define BITCOIN_REVERSELOCK_H
-
-/**
- * An RAII-style reverse lock. Unlocks on construction and locks on destruction.
- */
-template <typename Lock> class reverse_lock {
-public:
- explicit reverse_lock(Lock &_lock) : lock(_lock) {
- _lock.unlock();
- _lock.swap(templock);
- }
-
- ~reverse_lock() {
- templock.lock();
- templock.swap(lock);
- }
-
-private:
- reverse_lock(reverse_lock const &);
- reverse_lock &operator=(reverse_lock const &);
-
- Lock &lock;
- Lock templock;
-};
-
-#endif // BITCOIN_REVERSELOCK_H
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Mar 1, 12:08 (3 h, 8 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5187778
Default Alt Text
D6535.diff (1 KB)
Attached To
D6535: Drop unused reverselock.h
Event Timeline
Log In to Comment