You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
316 B

#include <stdlib.h>
#include "threads.h"
/* The only purpose of this file is to do
* some configuration if required before
* calling the actual rosace main function
*/
int main(int argc, char* argv[]){
uint64_t tsimu=300*200;
if (argc>1) {
tsimu = atoi(argv[1])*200;
}
return run_rosace(tsimu);
}