-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprefix.h
108 lines (90 loc) · 2.33 KB
/
prefix.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
* clockperf
*
* Copyright (c) 2016-2021, Steven Noonan <[email protected]>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
*/
#ifndef __prefix_h
#define __prefix_h
#include "platform.h"
#define _GNU_SOURCE
#ifdef TARGET_OS_WINDOWS
#define WINVER 0x0A00
#define _WIN32_WINNT 0x0A00
#define _WIN32_LEAN_AND_MEAN
#endif
#include <inttypes.h>
#include <math.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#ifdef TARGET_COMPILER_MSVC
#define snprintf _snprintf
#define inline __inline
#include <float.h>
#define __FLT_EPSILON__ FLT_EPSILON
#else
#define HAVE_GETTIMEOFDAY
#include <sys/time.h>
#include <unistd.h>
#endif
#ifdef TARGET_OS_LINUX
#include <sys/resource.h>
#define HAVE_GETRUSAGE
#endif
#ifdef TARGET_OS_WINDOWS
#include <windows.h>
#endif
#if !defined(TARGET_COMPILER_MINGW)
#define HAVE_TIME
#endif
#ifndef TARGET_OS_WINDOWS
/* On Cygwin/MinGW, ftime has a void return, so we can't use it. */
#define HAVE_FTIME
#define HAVE_CLOCK
#endif
#include <sys/timeb.h>
#ifdef TARGET_OS_MACOSX
#include <mach/mach_time.h>
#define HAVE_MACH_TIME
#endif
#ifdef _POSIX_TIMERS
#if _POSIX_TIMERS > 0 && !defined(TARGET_COMPILER_MINGW)
#define HAVE_CLOCK_GETTIME
#endif
#endif
#ifdef TARGET_OS_MACOSX
#ifdef CLOCK_REALTIME
#define HAVE_CLOCK_GETTIME
#endif
#endif
#ifdef TARGET_OS_WINDOWS
#undef CLOCK_THREAD_CPUTIME_ID
#undef CLOCK_PROCESS_CPUTIME_ID
#endif
#ifdef TARGET_CPU_PPC
#include <sys/wait.h>
#endif
#ifdef TARGET_COMPILER_GCC
#define INLINE __attribute__((always_inline)) inline
#define UNUSED __attribute__((unused))
#else
#define INLINE inline
#define UNUSED
#endif
#endif
/* vim: set ts=4 sts=4 sw=4 et: */