Deleted Added
full compact
29c29
< * $FreeBSD: head/sbin/hastd/synch.h 204076 2010-02-18 23:16:19Z pjd $
---
> * $FreeBSD: head/sbin/hastd/synch.h 211876 2010-08-27 13:58:38Z pjd $
35a36
> #include <errno.h>
36a38
> #include <pthread_np.h>
72a75,77
> static __inline bool
> mtx_owned(pthread_mutex_t *lock)
> {
73a79,81
> return (pthread_mutex_isowned_np(lock) != 0);
> }
>