blob: d4a04efd2d067aa32c7bf6d085a998e3522c449c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <pthread.h>
#include "global_statistics.h"
struct global_statistics global_statistics = { 0ULL, 0ULL, 0ULL, 0ULL };
pthread_mutex_t global_statistics_mutex = PTHREAD_MUTEX_INITIALIZER;
void global_statistics_lock(void) {
pthread_mutex_lock(&global_statistics_mutex);
}
void global_statistics_unlock(void) {
pthread_mutex_unlock(&global_statistics_mutex);
}
|