swayfx/include/log.h

23 lines
668 B
C
Raw Normal View History

#ifndef _SWAY_LOG_H
#define _SWAY_LOG_H
#include <stdbool.h>
2018-01-06 08:32:51 +11:00
#include <wlr/util/log.h>
2017-04-21 02:13:53 +10:00
2018-07-10 07:54:30 +10:00
#ifdef __GNUC__
#define ATTRIB_PRINTF(start, end) __attribute__((format(printf, start, end)))
#else
#define ATTRIB_PRINTF(start, end)
#endif
void _sway_abort(const char *filename, ...) ATTRIB_PRINTF(1, 2);
2017-04-21 02:13:53 +10:00
#define sway_abort(FMT, ...) \
2018-07-10 07:54:30 +10:00
_sway_abort("[%s:%d] " FMT, _wlr_strip_path(__FILE__), __LINE__, ##__VA_ARGS__)
2015-08-27 04:01:26 +10:00
bool _sway_assert(bool condition, const char* format, ...) ATTRIB_PRINTF(2, 3);
2015-08-27 04:01:26 +10:00
#define sway_assert(COND, FMT, ...) \
_sway_assert(COND, "[%s:%d] %s:" FMT, _wlr_strip_path(__FILE__), __LINE__, __func__, ##__VA_ARGS__)
2015-08-27 04:01:26 +10:00
2015-08-25 06:44:58 +10:00
void error_handler(int sig);
#endif