mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-27 12:38:24 +00:00
As we are going to use libuv outside of the netmgr, we need the shims to be readily available for the rest of the codebase. Move the "netmgr/uv-compat.h" to <isc/uv.h> and netmgr/uv-compat.c to uv.c, and as a rule of thumb, the users of libuv should include <isc/uv.h> instead of <uv.h> directly. Additionally, merge netmgr/uverr2result.c into uv.c and rename the single function from isc__nm_uverr2result() to isc_uverr2result().
40 lines
1.1 KiB
C
40 lines
1.1 KiB
C
/*
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
*
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
* information regarding copyright ownership.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <isc/util.h>
|
|
|
|
#if __SANITIZE_THREAD__
|
|
|
|
#include <pthread.h>
|
|
|
|
#define isc_barrier_t pthread_barrier_t
|
|
|
|
#define isc_barrier_init(barrier, count) \
|
|
pthread_barrier_init(barrier, NULL, count)
|
|
#define isc_barrier_destroy(barrier) pthread_barrier_destroy(barrier)
|
|
#define isc_barrier_wait(barrier) pthread_barrier_wait(barrier)
|
|
|
|
#else
|
|
|
|
#include <isc/uv.h>
|
|
|
|
#define isc_barrier_t uv_barrier_t
|
|
|
|
#define isc_barrier_init(barrier, count) uv_barrier_init(barrier, count)
|
|
#define isc_barrier_destroy(barrier) uv_barrier_destroy(barrier)
|
|
#define isc_barrier_wait(barrier) uv_barrier_wait(barrier)
|
|
|
|
#endif /* __SANITIZE_THREAD__ */
|