2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 14:07:59 +00:00

mutexblock, not just mutex. Duh.

This commit is contained in:
Michael Graff
1999-09-24 23:32:14 +00:00
parent c0b16ed865
commit 783e10df2c
2 changed files with 4 additions and 4 deletions

View File

@@ -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.
*

View File

@@ -21,7 +21,7 @@
#include <isc/mutexblock.h>
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;