OSDN Git Service

[Support] Fix return type deduction in RetryAfterSignal
[android-x86/external-llvm.git] / include / llvm / Support / Errno.h
1 //===- llvm/Support/Errno.h - Portable+convenient errno handling -*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares some portable and convenient functions to deal with errno.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_SUPPORT_ERRNO_H
15 #define LLVM_SUPPORT_ERRNO_H
16
17 #include <cerrno>
18 #include <string>
19 #include <type_traits>
20
21 namespace llvm {
22 namespace sys {
23
24 /// Returns a string representation of the errno value, using whatever
25 /// thread-safe variant of strerror() is available.  Be sure to call this
26 /// immediately after the function that set errno, or errno may have been
27 /// overwritten by an intervening call.
28 std::string StrError();
29
30 /// Like the no-argument version above, but uses \p errnum instead of errno.
31 std::string StrError(int errnum);
32
33 template <typename Fun, typename... Args,
34           typename ResultT = std::result_of<Fun const &(const Args &...)>>
35 inline typename ResultT::type RetryAfterSignal(typename ResultT::type Fail,
36                                                const Fun &F,
37                                                const Args &... As) {
38   typename ResultT::type Res;
39   do
40     Res = F(As...);
41   while (Res == Fail && errno == EINTR);
42   return Res;
43 }
44
45 }  // namespace sys
46 }  // namespace llvm
47
48 #endif  // LLVM_SYSTEM_ERRNO_H