This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
2018-10-03 21:52:11 +02:00
|
|
|
#ifndef __IPC_ERROR_H__
|
|
|
|
#define __IPC_ERROR_H__
|
2016-12-21 01:26:47 +01:00
|
|
|
|
2017-08-26 19:42:54 +02:00
|
|
|
#include "logger.h"
|
|
|
|
|
2018-10-08 15:18:56 +02:00
|
|
|
#define IPC_ERROR_NOT_ENOUGH_MEMORY 100
|
|
|
|
#define IPC_ERROR_WRONG_PARAMETERS 101
|
|
|
|
|
2016-12-21 01:26:47 +01:00
|
|
|
#define handle_error(msg) \
|
2017-08-26 19:42:54 +02:00
|
|
|
do { log_error (msg); exit(EXIT_FAILURE); } while (0)
|
2016-12-21 01:26:47 +01:00
|
|
|
|
|
|
|
#define handle_err(fun,msg)\
|
2017-08-26 19:42:54 +02:00
|
|
|
do { log_error ("%s: file %s line %d %s", fun, __FILE__, __LINE__, msg); } while (0)
|
2016-12-21 01:26:47 +01:00
|
|
|
|
|
|
|
#endif
|