Looks like some versions of mingw don't have errno_t. Use int.
[oota-llvm.git] / lib / Support / Windows / TimeValue.inc
1 //===- Win32/TimeValue.cpp - Win32 TimeValue Implementation -----*- 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 provides the Win32 implementation of the TimeValue class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "Windows.h"
15 #include <time.h>
16
17 namespace llvm {
18 using namespace sys;
19
20 //===----------------------------------------------------------------------===//
21 //=== WARNING: Implementation here must contain only Win32 specific code.
22 //===----------------------------------------------------------------------===//
23
24 TimeValue TimeValue::now() {
25   uint64_t ft;
26   GetSystemTimeAsFileTime(reinterpret_cast<FILETIME *>(&ft));
27
28   TimeValue t(0, 0);
29   t.fromWin32Time(ft);
30   return t;
31 }
32
33 std::string TimeValue::str() const {
34   struct tm LT;
35   __time64_t OurTime = this->toEpochTime();
36   int Error = ::_localtime64_s(&LT, &OurTime);
37   assert(!Error);
38
39   char Buffer[25];
40   // FIXME: the windows version of strftime doesn't support %e
41   strftime(Buffer, 25, "%b %d %H:%M %Y", &LT);
42   return std::string(Buffer);
43 }
44
45
46 }