forked from chen3feng/toft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_error.cpp
54 lines (44 loc) · 1.16 KB
/
check_error.cpp
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright (c) 2011, The Toft Authors.
// All rights reserved.
//
// Author: CHEN Feng <[email protected]>
// Created: 06/23/11
// Description:
#include "toft/system/check_error.h"
#include <errno.h>
#include <string.h>
#include "thirdparty/glog/logging.h"
#include "thirdparty/glog/raw_logging.h"
namespace toft {
void ReportErrnoError(const char* function_name, int error)
{
const char* msg = strerror(error);
RAW_LOG(FATAL, "%s: Fatal error, %s", function_name, msg);
}
void ReportPosixError(const char* function_name)
{
ReportErrnoError(function_name, errno);
}
bool ReportPosixTimedError(const char* function_name)
{
int error = errno;
if (error == ETIMEDOUT)
return false;
ReportErrnoError(function_name, error);
return true;
}
bool ReportPthreadTimedError(const char* function_name, int error)
{
if (error == ETIMEDOUT)
return false;
ReportErrnoError(function_name, error);
return false;
}
bool ReportPthreadTryLockError(const char* function_name, int error)
{
if (error == EBUSY || error == EAGAIN)
return false;
ReportErrnoError(function_name, error);
return false;
}
} // namespace toft