add pthread_detach function
[c11tester.git] / params.h
1 #ifndef __PARAMS_H__
2 #define __PARAMS_H__
3
4 /**
5  * Model checker parameter structure. Holds run-time configuration options for
6  * the model checker.
7  */
8 struct model_params {
9         unsigned int uninitvalue;
10         int maxexecutions;
11         bool nofork;
12
13         /** @brief Verbosity (0 = quiet; 1 = noisy; 2 = noisier) */
14         int verbose;
15
16         /** @brief Command-line argument count to pass to user program */
17         int argc;
18
19         /** @brief Command-line arguments to pass to user program */
20         char **argv;
21 };
22
23 void param_defaults(struct model_params *params);
24
25 #endif  /* __PARAMS_H__ */