Use Better Exit Codes
This commit is contained in:
parent
1d14cc5059
commit
a39476228e
@ -72,7 +72,7 @@ static void load(char **ld_path, char **ld_preload, char *folder) {
|
|||||||
} else if (errno != 0) {
|
} else if (errno != 0) {
|
||||||
// Error Reading Contents Of Folder
|
// Error Reading Contents Of Folder
|
||||||
fprintf(stderr, "Error Reading Directory: %s\n", strerror(errno));
|
fprintf(stderr, "Error Reading Directory: %s\n", strerror(errno));
|
||||||
exit(1);
|
exit(EXIT_FAILURE);
|
||||||
} else {
|
} else {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -94,7 +94,7 @@ static void load(char **ld_path, char **ld_preload, char *folder) {
|
|||||||
} else {
|
} else {
|
||||||
// Unable To Open Folder
|
// Unable To Open Folder
|
||||||
fprintf(stderr, "Error Opening Directory: %s\n", strerror(errno));
|
fprintf(stderr, "Error Opening Directory: %s\n", strerror(errno));
|
||||||
exit(1);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@ extern "C" {
|
|||||||
#include <dlfcn.h>
|
#include <dlfcn.h>
|
||||||
|
|
||||||
#define INFO(msg, ...) fprintf(stderr, "[INFO]: " msg "\n", __VA_ARGS__);
|
#define INFO(msg, ...) fprintf(stderr, "[INFO]: " msg "\n", __VA_ARGS__);
|
||||||
#define ERR(msg, ...) fprintf(stderr, "[ERR]: " msg "\n", __VA_ARGS__); exit(1);
|
#define ERR(msg, ...) fprintf(stderr, "[ERR]: " msg "\n", __VA_ARGS__); exit(EXIT_FAILURE);
|
||||||
|
|
||||||
#define HOOK(name, return_type, args) \
|
#define HOOK(name, return_type, args) \
|
||||||
typedef return_type (*name##_t)args; \
|
typedef return_type (*name##_t)args; \
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#ifndef CXX_11_UTIL_H
|
#ifndef CXX_11_UTIL_H
|
||||||
|
|
||||||
#define CXX_11_UTIL
|
#define CXX_11_UTIL_H
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
Loading…
Reference in New Issue
Block a user