[Tarantool-patches] [PATCH v15 02/11] module_cache: move module handling into own subsystem

Vladislav Shpilevoy v.shpilevoy at tarantool.org
Sun Feb 7 20:20:23 MSK 2021


Hi! Thanks for the patch!

> diff --git a/src/box/module_cache.c b/src/box/module_cache.c
> new file mode 100644
> index 000000000..4d89baf9b
> --- /dev/null
> +++ b/src/box/module_cache.c
> @@ -0,0 +1,535 @@
> +/*
> + * SPDX-License-Identifier: BSD-2-Clause
> + *
> + * Copyright 2010-2021, Tarantool AUTHORS, please see AUTHORS file.
> + */
> +
> +#include <dlfcn.h>
> +#include <fcntl.h>
> +#include <stdlib.h>
> +#include <string.h>
> +
> +#include "assoc.h"
> +#include "diag.h"
> +#include "error.h"

Error.h is included twice again. Here and a few lines below.

> +#include "errinj.h"
> +#include "fiber.h"
> +#include "port.h"
> +
> +#include "error.h"


More information about the Tarantool-patches mailing list