blob: dd337a76fedaf8ff069d9b4733aa390c48044a98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#include "util/exception.hh"
#include <errno.h>
#include <string.h>
namespace util {
Exception::Exception() throw() {}
Exception::~Exception() throw() {}
namespace {
// The XOPEN version.
const char *HandleStrerror(int ret, const char *buf) {
if (!ret) return buf;
return NULL;
}
// The GNU version.
const char *HandleStrerror(const char *ret, const char *buf) {
return ret;
}
} // namespace
ErrnoException::ErrnoException() throw() : errno_(errno) {
char buf[200];
buf[0] = 0;
const char *add = HandleStrerror(strerror_r(errno, buf, 200), buf);
if (add) {
*this << add << ' ';
}
}
ErrnoException::~ErrnoException() throw() {}
} // namespace util
|