Create the sys/time.h portability header
[folly.git] / folly / portability / SysTime.cpp
1 /*
2  * Copyright 2016 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <folly/portability/SysTime.h>
18
19 #ifdef _WIN32
20 #include <cstdint>
21 #include <Windows.h>
22
23 extern "C" int gettimeofday(timeval* tv, timezone*) {
24   constexpr auto posixWinFtOffset = 116444736000000000ULL;
25
26   if (tv) {
27     FILETIME ft;
28     GetSystemTimeAsFileTime(&ft);
29     uint64_t ns = *(uint64_t*)&ft;
30     tv->tv_usec = (long)((ns / 10ULL) % 1000000ULL);
31     tv->tv_sec = (long)((ns - posixWinFtOffset) / 10000000ULL);
32   }
33
34   return 0;
35 }
36 #endif