1 //===- Errno.cpp - errno support --------------------------------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the errno wrappers.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/System/Errno.h"
15 #include "llvm/Config/config.h" // Get autoconf configuration settings
24 //===----------------------------------------------------------------------===//
25 //=== WARNING: Implementation here must contain only TRULY operating system
26 //=== independent code.
27 //===----------------------------------------------------------------------===//
33 std::string
StrError() {
34 return StrError(errno
);
36 #endif // HAVE_ERRNO_H
38 std::string
StrError(int errnum
) {
39 const int MaxErrStrLen
= 2000;
40 char buffer
[MaxErrStrLen
];
43 #ifdef HAVE_STRERROR_R
44 // strerror_r is thread-safe.
46 # if defined(__GLIBC__) && defined(_GNU_SOURCE)
47 // glibc defines its own incompatible version of strerror_r
48 // which may not use the buffer supplied.
49 str
= strerror_r(errnum
,buffer
,MaxErrStrLen
-1);
51 strerror_r(errnum
,buffer
,MaxErrStrLen
-1);
53 #elif defined(HAVE_STRERROR_S) // Windows.
55 strerror_s(buffer
, errnum
);
56 #elif defined(HAVE_STRERROR)
57 // Copy the thread un-safe result of strerror into
58 // the buffer as fast as possible to minimize impact
59 // of collision of strerror in multiple threads.
61 strncpy(buffer
,strerror(errnum
),MaxErrStrLen
-1);
62 buffer
[MaxErrStrLen
-1] = '\0';
64 // Strange that this system doesn't even have strerror
65 // but, oh well, just use a generic message
66 sprintf(buffer
, "Error #%d", errnum
);
74 #endif // HAVE_STRING_H