Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2852)

Unified Diff: base/lock_impl_posix.cc

Issue 6038: Enable error checking on Posix locks in debug, and make release lock creation... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/lock_impl_posix.cc
===================================================================
--- base/lock_impl_posix.cc (revision 2711)
+++ base/lock_impl_posix.cc (working copy)
@@ -9,15 +9,21 @@
#include "base/logging.h"
LockImpl::LockImpl() {
+#ifndef NDEBUG
+ // In debug, setup attributes for lock error checking.
pthread_mutexattr_t mta;
int rv = pthread_mutexattr_init(&mta);
DCHECK(rv == 0);
- //rv = pthread_mutexattr_settype(&mta, PTHREAD_MUTEX_RECURSIVE);
+ rv = pthread_mutexattr_settype(&mta, PTHREAD_MUTEX_ERRORCHECK);
DCHECK(rv == 0);
rv = pthread_mutex_init(&os_lock_, &mta);
DCHECK(rv == 0);
rv = pthread_mutexattr_destroy(&mta);
DCHECK(rv == 0);
+#else
+ // In release, go with the default lock attributes.
+ pthread_mutex_init(&os_lock_, NULL);
+#endif
mendola 2008/10/01 14:25:21 this is fine if we want an undefined behavior in c
}
LockImpl::~LockImpl() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698