X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=params.h;h=9a2cf3b96f99f5c864d4be1903b4eecb72c2fc71;hp=0b1c5bf7e33b47bd5755289d1fc3e896b807f489;hb=de0692e808050b731ea282bbf5c314f2f74cdd7e;hpb=82f6d9ab97a87e874fb1b5dfa237266f4bfc95d1 diff --git a/params.h b/params.h index 0b1c5bf7..9a2cf3b9 100644 --- a/params.h +++ b/params.h @@ -6,14 +6,10 @@ * 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; + bool threadsnocleanup; /** @brief Verbosity (0 = quiet; 1 = noisy; 2 = noisier) */ int verbose; @@ -25,4 +21,6 @@ struct model_params { char **argv; }; -#endif /* __PARAMS_H__ */ +void param_defaults(struct model_params *params); + +#endif /* __PARAMS_H__ */