Makefile: Suppress `-Wimplicit-fallthrough` when compiling `lex.yy`
[fio.git] / flow.h
1 #ifndef FIO_FLOW_H
2 #define FIO_FLOW_H
3
4 #define FLOW_MAX_WEIGHT 1000
5
6 int flow_threshold_exceeded(struct thread_data *td);
7 void flow_init_job(struct thread_data *td);
8 void flow_exit_job(struct thread_data *td);
9
10 void flow_exit(void);
11 void flow_init(void);
12
13 #endif