From b981c8861d645f82c3a7878572e985792aec031e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Tue, 17 Jun 2003 04:36:12 +0000 Subject: [PATCH] remove freebsd comment, don't use debug pthread stubs by default git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12377 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/heim_threads.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/krb5/heim_threads.h b/lib/krb5/heim_threads.h index 1fd73b806..78a4d85a6 100644 --- a/lib/krb5/heim_threads.h +++ b/lib/krb5/heim_threads.h @@ -63,9 +63,6 @@ #define HEIMDAL_MUTEX_unlock(m) mutex_unlock(m) #define HEIMDAL_MUTEX_destroy(m) mutex_destroy(m) -/* XXX hole for Jacques to fill in :) - #el if defined(__FreeBSD_version) && */ - #elif defined(ENABLE_PTHREAD_SUPPORT) #define HEIMDAL_MUTEX pthread_mutex_t @@ -75,7 +72,7 @@ #define HEIMDAL_MUTEX_unlock(m) pthread_mutex_unlock(m) #define HEIMDAL_MUTEX_destroy(m) pthread_mutex_destroy(m) -#elif defined(HEIMDAL_DEBUG_THREADS) || 1 +#elif defined(HEIMDAL_DEBUG_THREADS) /* no threads support, just do consistency checks */ #include