Summary: also added myself to CONTRIBUTORS.
Reviewed By: marc
Test Plan: the following program no longer leaks memory (valgrind):
int main(int argc, char **argv){
Mutex mu;
mu.lock();
mu.unlock();
}
Revert Plan: ok
Notes: this is kind of important
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665279
13f79535-47bb-0310-9956-
ffa450edef68
-Autoconf error message fix for libevent detection
-clock_gettime implementation for OSX
+Andrew Bosworth <bosworth@post.harvard.edu>
+- ReadWriteMutex
+- Mutex memory leak fix
+- added callback to redirect logging
+
----------------
Release 20070401
----------------
Mutex::Mutex() : impl_(new Mutex::impl()) {}
+Mutex::~Mutex() { delete impl_; }
+
void Mutex::lock() const { impl_->lock(); }
bool Mutex::trylock() const { return impl_->trylock(); }
ReadWriteMutex::ReadWriteMutex() : impl_(new ReadWriteMutex::impl()) {}
+ReadWriteMutex::~ReadWriteMutex() { delete impl_; }
+
void ReadWriteMutex::acquireRead() const { impl_->acquireRead(); }
void ReadWriteMutex::acquireWrite() const { impl_->acquireWrite(); }
class Mutex {
public:
Mutex();
- virtual ~Mutex() {}
+ virtual ~Mutex();
virtual void lock() const;
virtual bool trylock() const;
virtual void unlock() const;
class ReadWriteMutex {
public:
ReadWriteMutex();
- virtual ~ReadWriteMutex() {}
+ virtual ~ReadWriteMutex();
// these get the lock and block until it is done successfully
virtual void acquireRead() const;