add pthread_detach function
[c11tester.git] / params.h
index 0b1c5bf7e33b47bd5755289d1fc3e896b807f489..7f749cae6fc082d1551fdfb86f0c5728cf176fbc 100644 (file)
--- a/params.h
+++ b/params.h
@@ -6,14 +6,9 @@
  * the model checker.
  */
 struct model_params {
-       int maxreads;
-       bool yieldon;
-       bool yieldblock;
-       unsigned int fairwindow;
-       unsigned int enabledcount;
-       unsigned int bound;
        unsigned int uninitvalue;
        int maxexecutions;
+       bool nofork;
 
        /** @brief Verbosity (0 = quiet; 1 = noisy; 2 = noisier) */
        int verbose;
@@ -25,4 +20,6 @@ struct model_params {
        char **argv;
 };
 
-#endif /* __PARAMS_H__ */
+void param_defaults(struct model_params *params);
+
+#endif /* __PARAMS_H__ */