src/lib/error.h
changeset 33 c71f3053c714
parent 28 e944453ca924
child 36 56427f22e969
equal deleted inserted replaced
32:90e14e0df133 33:c71f3053c714
     5 
     5 
     6 #define ERROR(...) do { err_func(__func__, __VA_ARGS__); goto error; } while (0)
     6 #define ERROR(...) do { err_func(__func__, __VA_ARGS__); goto error; } while (0)
     7 #define PERROR(...) do { perr_func(__func__, __VA_ARGS__); goto error; } while (0)
     7 #define PERROR(...) do { perr_func(__func__, __VA_ARGS__); goto error; } while (0)
     8 #define EERROR(_err, ...) do { eerr_func(__func__, (_err), __VA_ARGS__); goto error; } while (0)
     8 #define EERROR(_err, ...) do { eerr_func(__func__, (_err), __VA_ARGS__); goto error; } while (0)
     9 #define NERROR(...) do { err_func_nonl(__func__, __VA_ARGS__); goto error; } while (0)
     9 #define NERROR(...) do { err_func_nonl(__func__, __VA_ARGS__); goto error; } while (0)
       
    10 #define SERROR(_err) do { (_err); goto error; } while (0)
    10 
    11 
    11 // XXX: replace with *err_func(...) + exit(EXIT_FAILURE)
    12 // XXX: replace with *err_func(...) + exit(EXIT_FAILURE)
    12 #define FATAL(...) err_func_exit(__func__, __VA_ARGS__)
    13 #define FATAL(...) err_func_exit(__func__, __VA_ARGS__)
    13 #define PFATAL(...) perr_func_exit(__func__, __VA_ARGS__)
    14 #define PFATAL(...) perr_func_exit(__func__, __VA_ARGS__)
    14 #define EFATAL(_err, ...) eerr_func_exit(__func__, (_err), __VA_ARGS__)
    15 #define EFATAL(_err, ...) eerr_func_exit(__func__, (_err), __VA_ARGS__)