From 783e10df2c52f758b056960f4cfce513ca1d6fe6 Mon Sep 17 00:00:00 2001 From: Michael Graff Date: Fri, 24 Sep 1999 23:32:14 +0000 Subject: [PATCH] mutexblock, not just mutex. Duh. --- lib/isc/include/isc/mutexblock.h | 4 ++-- lib/isc/mutexblock.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/isc/include/isc/mutexblock.h b/lib/isc/include/isc/mutexblock.h index 2786931631..4c442a5fb2 100644 --- a/lib/isc/include/isc/mutexblock.h +++ b/lib/isc/include/isc/mutexblock.h @@ -25,7 +25,7 @@ ISC_LANG_BEGINDECLS isc_result_t -isc_mutex_initblock(isc_mutex_t *block, unsigned int count); +isc_mutexblock_initblock(isc_mutex_t *block, unsigned int count); /* * Initialize a block of locks. If an error occurs all initialized locks * will be destroyed, if possible. @@ -43,7 +43,7 @@ isc_mutex_initblock(isc_mutex_t *block, unsigned int count); */ isc_result_t -isc_mutex_destroyblock(isc_mutex_t *block, unsigned int count); +isc_mutexblock_destroyblock(isc_mutex_t *block, unsigned int count); /* * Destroy a block of locks. * diff --git a/lib/isc/mutexblock.c b/lib/isc/mutexblock.c index df8b7e95c6..1e2305f79e 100644 --- a/lib/isc/mutexblock.c +++ b/lib/isc/mutexblock.c @@ -21,7 +21,7 @@ #include isc_result_t -isc_mutex_initblock(isc_mutex_t *block, unsigned int count) +isc_mutexblock_initblock(isc_mutex_t *block, unsigned int count) { isc_result_t result; unsigned int i; @@ -42,7 +42,7 @@ isc_mutex_initblock(isc_mutex_t *block, unsigned int count) } isc_result_t -isc_mutex_destroyblock(isc_mutex_t *block, unsigned int count) +isc_mutexblock_destroyblock(isc_mutex_t *block, unsigned int count) { isc_result_t result; unsigned int i;