c95e7b8ada9b179f46ebbbd784bf76ad554690c7
[folly.git] / folly / detail / Clock.h
1 /*
2  * Copyright 2014 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 #ifndef FOLLY_DETAIL_CLOCK_H_
18 #define FOLLY_DETAIL_CLOCK_H_
19
20 #include <ctime>
21 #include <cstdint>
22
23 #ifndef FOLLY_NO_CONFIG
24 #include "folly/folly-config.h"
25 #endif
26
27 #if FOLLY_HAVE_CLOCK_GETTIME
28 #error This should only be used as a workaround for platforms \
29           that do not support clock_gettime(2).
30 #endif
31
32 /* For windows, we'll use pthread's time implementations */
33 #ifdef _MSC_VER
34 #include <pthread.h>
35 #include <pthread_time.h>
36 #else
37 typedef uint8_t clockid_t;
38 #define CLOCK_REALTIME 0
39
40 int clock_gettime(clockid_t clk_id, struct timespec* ts);
41 int clock_getres(clockid_t clk_id, struct timespec* ts);
42 #endif
43
44 #endif /* FOLLY_DETAIL_CLOCK_H_ */