1 //===- Win32/TimeValue.cpp - Win32 TimeValue Implementation -----*- 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 provides the Win32 implementation of the TimeValue class.
12 //===----------------------------------------------------------------------===//
20 //===----------------------------------------------------------------------===//
21 //=== WARNING: Implementation here must contain only Win32 specific code.
22 //===----------------------------------------------------------------------===//
24 TimeValue TimeValue::now() {
26 GetSystemTimeAsFileTime(reinterpret_cast<FILETIME *>(&ft));
33 std::string TimeValue::str() const {
35 // This ban may be lifted by either:
36 // (i) a future MinGW version other than 1.0 inherents the __time64_t type, or
37 // (ii) configure tests for either the time_t or __time64_t type.
38 time_t ourTime = time_t(this->toEpochTime());
39 struct tm *lt = ::localtime(&ourTime);
41 __time64_t ourTime = this->toEpochTime();
42 struct tm *lt = ::_localtime64(&ourTime);
46 strftime(buffer, 25, "%a %b %d %H:%M:%S %Y", lt);
47 return std::string(buffer);