Get rid of uninitialized actions and just use non-atomic writes instead
[c11tester.git] / params.h
index 597ce1ca67c85e95c91668a042d4df01dfed577d..b4bfc7e7b7921b62c80ccf82ba2c0b2bdd30f925 100644 (file)
--- a/params.h
+++ b/params.h
@@ -6,17 +6,13 @@
  * the model checker.
  */
 struct model_params {
-       unsigned int uninitvalue;
        int maxexecutions;
+       bool nofork;
 
        /** @brief Verbosity (0 = quiet; 1 = noisy; 2 = noisier) */
        int verbose;
-
-       /** @brief Command-line argument count to pass to user program */
-       int argc;
-
-       /** @brief Command-line arguments to pass to user program */
-       char **argv;
 };
 
-#endif/* __PARAMS_H__ */
+void param_defaults(struct model_params *params);
+
+#endif /* __PARAMS_H__ */