mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-08 21:22:09 -04:00
mutexblock, not just mutex. Duh.
This commit is contained in:
parent
c0b16ed865
commit
783e10df2c
2 changed files with 4 additions and 4 deletions
|
|
@ -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.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue