2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

I just can't win today. Remove redundant 'block' from function names.

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

View File

@ -25,7 +25,7 @@
ISC_LANG_BEGINDECLS ISC_LANG_BEGINDECLS
isc_result_t isc_result_t
isc_mutexblock_initblock(isc_mutex_t *block, unsigned int count); isc_mutexblock_init(isc_mutex_t *block, unsigned int count);
/* /*
* Initialize a block of locks. If an error occurs all initialized locks * Initialize a block of locks. If an error occurs all initialized locks
* will be destroyed, if possible. * will be destroyed, if possible.
@ -43,7 +43,7 @@ isc_mutexblock_initblock(isc_mutex_t *block, unsigned int count);
*/ */
isc_result_t isc_result_t
isc_mutexblock_destroyblock(isc_mutex_t *block, unsigned int count); isc_mutexblock_destroy(isc_mutex_t *block, unsigned int count);
/* /*
* Destroy a block of locks. * Destroy a block of locks.
* *

View File

@ -21,7 +21,7 @@
#include <isc/mutexblock.h> #include <isc/mutexblock.h>
isc_result_t isc_result_t
isc_mutexblock_initblock(isc_mutex_t *block, unsigned int count) isc_mutexblock_init(isc_mutex_t *block, unsigned int count)
{ {
isc_result_t result; isc_result_t result;
unsigned int i; unsigned int i;
@ -42,7 +42,7 @@ isc_mutexblock_initblock(isc_mutex_t *block, unsigned int count)
} }
isc_result_t isc_result_t
isc_mutexblock_destroyblock(isc_mutex_t *block, unsigned int count) isc_mutexblock_destroy(isc_mutex_t *block, unsigned int count)
{ {
isc_result_t result; isc_result_t result;
unsigned int i; unsigned int i;