Displaying 2 results from an estimated 2 matches for "unknown_error".
2007 May 19
0
Folding@Home in CentOS/Solaris Zone
...won't work ad
hoc, since the downloaded Core file won't start:
...
[16:44:49] Project: 3041 (Run 1, Clone 669, Gen 22)
[16:44:49]=20
[16:44:49] FATAL: Couldn't start core work threadFATAL:
Couldn't start
core checkpoint timer thread
[16:44:49] Folding at home Core Shutdown: UNKNOWN_ERROR
[16:44:49] CoreStatus =3D 0 (0)
[16:44:49] Client-core communications error: ERROR 0x0
[16:44:49] Deleting current work unit & continuing...
[16:44:49] - Preparing to get new work unit...
...
If somebody has a similar setup, I'd be
glad to be given a hint.
Alain M. Lafon
--
Pfaffenw...
2017 Jun 21
6
RFC: Cleaning up the Itanium demangler
...tring>
#include <numeric>
#include <cstdlib>
#include <cstring>
#include <cctype>
#ifdef _MSC_VER
// snprintf is implemented in VS 2015
#if _MSC_VER < 1900
#define snprintf _snprintf_s
#endif
#endif
namespace __cxxabiv1
{
namespace
{
enum
{
unknown_error = -4,
invalid_args = -3,
invalid_mangled_name,
memory_alloc_failure,
success
};
+class string_ref
+{
+ const char *first, *last;
+public:
+ template <size_t N> string_ref(const char (&str)[N])
+ : first(str), last(str + N - 1) {}
+ string_ref(con...