X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=client.h;h=90082a3491db54e2bcaec30b18182231fb1d83d5;hp=7fe09d157ab00857594268b61bbba05b12370ba6;hb=7c5489c06986f8576b387c05f1228f5e1cc89865;hpb=0cba0f919ee6af7dd65df436884336cff9c903f9 diff --git a/client.h b/client.h index 7fe09d15..90082a34 100644 --- a/client.h +++ b/client.h @@ -6,6 +6,7 @@ #include #include +#include "lib/types.h" #include "stat.h" struct fio_net_cmd; @@ -22,7 +23,7 @@ enum { struct client_file { char *file; - int remote; + bool remote; }; struct fio_client { @@ -38,6 +39,7 @@ struct fio_client { int port; int fd; unsigned int refs; + unsigned int last_cmd; char *name; @@ -45,16 +47,16 @@ struct fio_client { int state; - int skip_newline; - int is_sock; - int disk_stats_shown; + bool skip_newline; + bool is_sock; + bool disk_stats_shown; unsigned int jobs; unsigned int nr_stat; int error; int signal; int ipv6; - int sent_job; - int did_stat; + bool sent_job; + bool did_stat; uint32_t type; uint32_t thread_number; @@ -124,14 +126,13 @@ extern int fio_clients_connect(void); extern int fio_start_client(struct fio_client *); extern int fio_start_all_clients(void); extern int fio_clients_send_ini(const char *); -extern int fio_client_send_ini(struct fio_client *, const char *, int); +extern int fio_client_send_ini(struct fio_client *, const char *, bool); extern int fio_handle_clients(struct client_ops *); extern int fio_client_add(struct client_ops *, const char *, void **); extern struct fio_client *fio_client_add_explicit(struct client_ops *, const char *, int, int); extern void fio_client_add_cmd_option(void *, const char *); -extern int fio_client_add_ini_file(void *, const char *, int); +extern int fio_client_add_ini_file(void *, const char *, bool); extern int fio_client_terminate(struct fio_client *); -extern void fio_clients_terminate(void); extern struct fio_client *fio_get_client(struct fio_client *); extern void fio_put_client(struct fio_client *); extern int fio_client_update_options(struct fio_client *, struct thread_options *, uint64_t *); @@ -145,5 +146,9 @@ enum { FIO_CLIENT_TYPE_GUI = 2, }; +extern int sum_stat_clients; +extern struct thread_stat client_ts; +extern struct group_run_stats client_gs; + #endif