16 lines
396 B
C
16 lines
396 B
C
#ifndef __IPC_ERROR_H__
|
|
#define __IPC_ERROR_H__
|
|
|
|
#include "logger.h"
|
|
|
|
#define IPC_ERROR_NOT_ENOUGH_MEMORY 100
|
|
#define IPC_ERROR_WRONG_PARAMETERS 101
|
|
|
|
#define handle_error(msg) \
|
|
do { log_error (msg); exit(EXIT_FAILURE); } while (0)
|
|
|
|
#define handle_err(fun,msg)\
|
|
do { log_error ("%s: file %s line %d %s", fun, __FILE__, __LINE__, msg); } while (0)
|
|
|
|
#endif
|