ovni/src/common.h

45 lines
1.1 KiB
C
Raw Normal View History

2023-02-27 13:40:20 +01:00
/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
2022-09-19 12:39:02 +02:00
* SPDX-License-Identifier: MIT */
#ifndef COMMON_H
#define COMMON_H
2022-08-22 16:02:07 +02:00
#include <stdio.h>
/* Debug macros */
2023-01-25 12:01:01 +01:00
void progname_set(char *name);
void verr(const char *prefix, const char *func, const char *errstr, ...);
void vdie(const char *prefix, const char *func, const char *errstr, ...);
2023-01-25 12:01:01 +01:00
/* clang-format off */
2023-02-16 15:49:21 +01:00
#define rerr(...) fprintf(stderr, __VA_ARGS__)
#define err(...) verr("ERROR", __func__, __VA_ARGS__)
#define die(...) vdie("FATAL", __func__, __VA_ARGS__)
#define info(...) verr("INFO", NULL, __VA_ARGS__)
#define warn(...) verr("WARN", NULL, __VA_ARGS__)
2023-01-27 18:51:18 +01:00
#ifdef ENABLE_DEBUG
# define dbg(...) verr("DEBUG", __func__, __VA_ARGS__)
#else
# define dbg(...) do { if (0) { verr("DEBUG", __func__, __VA_ARGS__); } } while(0)
#endif
#define likely(x) __builtin_expect(!!(x), 1)
#define unlikely(x) __builtin_expect(!!(x), 0)
#define UNUSED(x) (void)(x)
2021-12-09 16:56:24 +01:00
/* Poison assert */
#pragma GCC poison assert
#define USE_RET __attribute__((warn_unused_result))
2023-01-17 19:25:21 +01:00
#define ARRAYLEN(x) (sizeof(x)/sizeof((x)[0]))
/* clang-format on */
2023-01-25 12:01:01 +01:00
#endif /* COMMON_H */