From 0c710d7162f05c1fc8d75eeae226fa0034e6ffac Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Fri, 29 Dec 2000 19:55:37 +0000 Subject: [PATCH] #define isc_mutex_stats to nothing --- lib/isc/nothreads/include/isc/mutex.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/isc/nothreads/include/isc/mutex.h b/lib/isc/nothreads/include/isc/mutex.h index 04b909ea24..b053e1d4b7 100644 --- a/lib/isc/nothreads/include/isc/mutex.h +++ b/lib/isc/nothreads/include/isc/mutex.h @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: mutex.h,v 1.1 2000/08/28 23:16:50 bwelling Exp $ */ +/* $Id: mutex.h,v 1.2 2000/12/29 19:55:37 bwelling Exp $ */ #ifndef ISC_MUTEX_H #define ISC_MUTEX_H 1 @@ -34,5 +34,6 @@ typedef int isc_mutex_t; (*(mp) == 0 ? ((*(mp))++, ISC_R_SUCCESS) : ISC_R_LOCKBUSY) #define isc_mutex_destroy(mp) \ (*(mp) == 0 ? (*(mp) = -1, ISC_R_SUCCESS) : ISC_R_UNEXPECTED) +#define isc_mutex_stats(fp) #endif /* ISC_MUTEX_H */