fc4ffd051ea5d3c9ad57fcc4b4249592b14ce61b
[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 #include <folly/Portability.h>
24
25 #if FOLLY_HAVE_CLOCK_GETTIME
26 #error This should only be used as a workaround for platforms \
27           that do not support clock_gettime(2).
28 #endif
29
30 /* For windows, we'll use pthread's time implementations */
31 #ifdef _MSC_VER
32 #include <pthread.h>
33 #include <pthread_time.h>
34 #else
35 typedef uint8_t clockid_t;
36 #define CLOCK_REALTIME 0
37
38 int clock_gettime(clockid_t clk_id, struct timespec* ts);
39 int clock_getres(clockid_t clk_id, struct timespec* ts);
40 #endif
41
42 #endif /* FOLLY_DETAIL_CLOCK_H_ */