summaryrefslogtreecommitdiff
path: root/error.cpp
diff options
context:
space:
mode:
authorDonghoon Shin <dhs.shin@samsung.com>2016-09-19 17:36:01 +0900
committerDonghoon Shin <dhs.shin@samsung.com>2016-09-19 17:36:01 +0900
commite8acd13cc87ea038ecd6103e4088ce3cf5d501d7 (patch)
tree4c7c8cc683a297463996aa286f2f7758e8691b8f /error.cpp
parentb95c2492274542bc4718a863f5d88f37a0a788ab (diff)
downloadclewarecontrol-e8acd13cc87ea038ecd6103e4088ce3cf5d501d7.tar.gz
clewarecontrol-e8acd13cc87ea038ecd6103e4088ce3cf5d501d7.tar.bz2
clewarecontrol-e8acd13cc87ea038ecd6103e4088ce3cf5d501d7.zip
Change-Id: I59bac2188ffbfe5a2ad2d9dcb33847aabfaffe44
Diffstat (limited to 'error.cpp')
-rw-r--r--error.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/error.cpp b/error.cpp
new file mode 100644
index 0000000..e8cf4af
--- /dev/null
+++ b/error.cpp
@@ -0,0 +1,21 @@
+// SVN: $Revision: 56 $
+#include <errno.h>
+#include <stdarg.h>
+#include <string.h>
+#include <vector>
+#include <stdio.h>
+#include <stdlib.h>
+#include <sys/types.h>
+
+void error_exit(const char *format, ...)
+{
+ va_list ap;
+
+ va_start(ap, format);
+ vfprintf(stderr, format, ap);
+ va_end(ap);
+
+ fprintf(stderr, "\nerrno at that time: %s (%d)\n", strerror(errno), errno);
+
+ exit(EXIT_FAILURE);
+}