From owner-svn-src-all@FreeBSD.ORG Fri Aug 27 13:58:38 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5522B1065696; Fri, 27 Aug 2010 13:58:38 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 454058FC13; Fri, 27 Aug 2010 13:58:38 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o7RDwcWc079787; Fri, 27 Aug 2010 13:58:38 GMT (envelope-from pjd@svn.freebsd.org) Received: (from pjd@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o7RDwcB4079785; Fri, 27 Aug 2010 13:58:38 GMT (envelope-from pjd@svn.freebsd.org) Message-Id: <201008271358.o7RDwcB4079785@svn.freebsd.org> From: Pawel Jakub Dawidek Date: Fri, 27 Aug 2010 13:58:38 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r211876 - head/sbin/hastd X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Aug 2010 13:58:38 -0000 Author: pjd Date: Fri Aug 27 13:58:38 2010 New Revision: 211876 URL: http://svn.freebsd.org/changeset/base/211876 Log: Add mtx_owned() implementation. MFC after: 2 weeks Obtained from: Wheel Systems Sp. z o.o. http://www.wheelsystems.com Modified: head/sbin/hastd/synch.h Modified: head/sbin/hastd/synch.h ============================================================================== --- head/sbin/hastd/synch.h Fri Aug 27 13:54:17 2010 (r211875) +++ head/sbin/hastd/synch.h Fri Aug 27 13:58:38 2010 (r211876) @@ -33,7 +33,9 @@ #define _SYNCH_H_ #include +#include #include +#include #include #include @@ -70,6 +72,12 @@ mtx_unlock(pthread_mutex_t *lock) error = pthread_mutex_unlock(lock); assert(error == 0); } +static __inline bool +mtx_owned(pthread_mutex_t *lock) +{ + + return (pthread_mutex_isowned_np(lock) != 0); +} static __inline void rw_init(pthread_rwlock_t *lock)