X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=pipe.cc;h=1f451dcbe41ee85473494bad7896206594a57afc;hp=b915c7927377f21005194d97289f7f6b799071ad;hb=7742256df627848c1c375f979f5369a45c92057b;hpb=1bdb456ee7767a75d266716459a85743740acc33 diff --git a/pipe.cc b/pipe.cc index b915c792..1f451dcb 100644 --- a/pipe.cc +++ b/pipe.cc @@ -8,18 +8,14 @@ static int (*pipe_init_p)(int filep[2]) = NULL; int pipe(int fildes[2]) { - if (!model) { - snapshot_system_init(10000, 1024, 1024, 40000); - model = new ModelChecker(); - model->startChecker(); - } - if (!pipe_init_p) { - pipe_init_p = (int (*)(int fildes[2])) dlsym(RTLD_NEXT, "pipe"); - char *error = dlerror(); - if (error != NULL) { - fputs(error, stderr); - exit(EXIT_FAILURE); - } - } - return pipe_init_p(fildes); + createModelIfNotExist(); + if (!pipe_init_p) { + pipe_init_p = (int (*)(int fildes[2]))dlsym(RTLD_NEXT, "pipe"); + char *error = dlerror(); + if (error != NULL) { + fputs(error, stderr); + exit(EXIT_FAILURE); + } + } + return pipe_init_p(fildes); }