-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathutil.h
123 lines (103 loc) · 3.57 KB
/
util.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
* Copyright (C) 2012 - 2015 Nominum, Inc.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation 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 NOMINUM DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM 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.
*/
#include <pthread.h>
#include <string.h>
#include <sys/time.h>
#include <isc/types.h>
#include "log.h"
#ifndef PERF_UTIL_H
#define PERF_UTIL_H 1
#define MILLION ((isc_uint64_t) 1000000)
#define THOUSAND ((isc_uint64_t) 1000)
#define THREAD(thread, start, arg) do { \
int __n = pthread_create((thread), NULL, (start), (arg)); \
if (__n != 0) \
perf_log_fatal("pthread_create failed: %s", \
strerror(__n)); \
} while (0)
#define JOIN(thread, valuep) do { \
int __n = pthread_join((thread), (valuep)); \
if (__n != 0) \
perf_log_fatal("pthread_join failed: %s", \
strerror(__n)); \
} while (0)
#define MUTEX_INIT(mutex) do { \
int __n = pthread_mutex_init((mutex), NULL); \
if (__n != 0) \
perf_log_fatal("pthread_mutex_init failed: %s", \
strerror(__n)); \
} while (0)
#define MUTEX_DESTROY(mutex) do { \
int __n = pthread_mutex_destroy((mutex)); \
if (__n != 0) \
perf_log_fatal("pthread_mutex_destroy failed: %s", \
strerror(__n)); \
} while (0)
#define LOCK(mutex) do { \
int __n = pthread_mutex_lock((mutex)); \
if (__n != 0) \
perf_log_fatal("pthread_mutex_lock failed: %s", \
strerror(__n)); \
} while (0)
#define UNLOCK(mutex) do { \
int __n = pthread_mutex_unlock((mutex)); \
if (__n != 0) \
perf_log_fatal("pthread_mutex_unlock failed: %s", \
strerror(__n)); \
} while (0)
#define COND_INIT(cond) do { \
int __n = pthread_cond_init((cond), NULL); \
if (__n != 0) \
perf_log_fatal("pthread_cond_init failed: %s", \
strerror(__n)); \
} while (0)
#define SIGNAL(cond) do { \
int __n = pthread_cond_signal((cond)); \
if (__n != 0) \
perf_log_fatal("pthread_cond_signal failed: %s", \
strerror(__n)); \
} while (0)
#define BROADCAST(cond) do { \
int __n = pthread_cond_broadcast((cond)); \
if (__n != 0) \
perf_log_fatal("pthread_cond_broadcast failed: %s", \
strerror(__n)); \
} while (0)
#define WAIT(cond, mutex) do { \
int __n = pthread_cond_wait((cond), (mutex)); \
if (__n != 0) \
perf_log_fatal("pthread_cond_wait failed: %s", \
strerror(__n)); \
} while (0)
#define TIMEDWAIT(cond, mutex, when, timedout) do { \
int __n = pthread_cond_timedwait((cond), (mutex), (when)); \
isc_boolean_t *res = (timedout); \
if (__n != 0 && __n != ETIMEDOUT) \
perf_log_fatal("pthread_cond_timedwait failed: %s", \
strerror(__n)); \
if (res != NULL) \
*res = ISC_TF(__n != 0); \
} while (0)
static __inline__ isc_uint64_t
get_time(void)
{
struct timeval tv;
gettimeofday(&tv, NULL);
return tv.tv_sec * MILLION + tv.tv_usec;
}
#define SAFE_DIV(n, d) ( (d) == 0 ? 0 : (n) / (d) )
#endif