forked from drouyang/memcached_client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloader.h
More file actions
33 lines (26 loc) · 661 Bytes
/
Copy pathloader.h
File metadata and controls
33 lines (26 loc) · 661 Bytes
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
// client - a memcached load tester
// David Meisner 2010 (meisner@umich.edu)
#ifndef CLIENT_H
#define CLIENT_H
#include <event2/event.h>
#include <malloc.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include <unistd.h>
#include <time.h>
#include <errno.h>
#include "config.h"
#include "worker.h"
#include "util.h"
#include <pthread.h>
#include "stats.h"
#include "generate.h"
struct config* parseArgs(int argc, char** argv);
void printConfiguration(struct config* config);
void loadServerFile(struct config* config);
void cleanUp(struct config* config);
int main(int argc, char** argv);
#endif