File: submit_options.h

package info (click to toggle)
raft 0.22.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,504 kB
  • sloc: ansic: 37,539; makefile: 264; sh: 77; python: 22
file content (16 lines) | stat: -rw-r--r-- 403 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Options for the submit benchmark. */

#ifndef SUBMIT_OPTIONS_H_
#define SUBMIT_OPTIONS_H_

#include <stddef.h>

/* Options for the submit benchmark */
struct submitOptions
{
    char *dir;     /* Directory to use for creating temporary files */
    size_t buf;    /* Buffer size of each raft entry to submit */
    unsigned size; /* Total number of bytes to submit */
};

#endif /* SUBMIT_ARGS_H_ */