2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

Replace custom isc_boolean_t with C standard bool type

This commit is contained in:
Ondřej Surý
2018-04-17 08:29:14 -07:00
parent cb6a185c69
commit 994e656977
546 changed files with 10785 additions and 10367 deletions

View File

@@ -22,6 +22,8 @@
#include <config.h>
#include <stdbool.h>
#include <isc/heap.h>
#include <isc/magic.h>
#include <isc/mem.h>
@@ -125,7 +127,7 @@ isc_heap_destroy(isc_heap_t **heapp) {
*heapp = NULL;
}
static isc_boolean_t
static bool
resize(isc_heap_t *heap) {
void **new_array;
unsigned int new_size;
@@ -135,7 +137,7 @@ resize(isc_heap_t *heap) {
new_size = heap->size + heap->size_increment;
new_array = isc_mem_get(heap->mctx, new_size * sizeof(void *));
if (new_array == NULL)
return (ISC_FALSE);
return (false);
if (heap->array != NULL) {
memmove(new_array, heap->array, heap->size * sizeof(void *));
isc_mem_put(heap->mctx, heap->array,
@@ -144,7 +146,7 @@ resize(isc_heap_t *heap) {
heap->size = new_size;
heap->array = new_array;
return (ISC_TRUE);
return (true);
}
static void
@@ -213,7 +215,7 @@ isc_heap_insert(isc_heap_t *heap, void *elt) {
void
isc_heap_delete(isc_heap_t *heap, unsigned int idx) {
void *elt;
isc_boolean_t less;
bool less;
REQUIRE(VALID_HEAP(heap));
REQUIRE(idx >= 1 && idx <= heap->last);