X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=common.cc;h=9cb7239d0a32d6bdcda8e41b1af252c190469d9e;hp=e6c6cce60ccd2e2b73bc22d5ae48129a37c307b1;hb=eb6e8431496fc3dfd7638fbfba4229f7215f6308;hpb=a003fc3b8b27621ca4c3e60cec0ddfebcea0fc72 diff --git a/common.cc b/common.cc index e6c6cce6..9cb7239d 100644 --- a/common.cc +++ b/common.cc @@ -14,15 +14,17 @@ #define MAX_TRACE_LEN 100 -/** @brief Model-checker output stream; default to stdout until redirected */ -FILE *model_out = stdout; +/** @brief Model-checker output file descriptor; default to stdout until redirected */ +int model_out = STDOUT_FILENO; #define CONFIG_STACKTRACE /** Print a backtrace of the current program state. */ void print_trace(void) { #ifdef CONFIG_STACKTRACE - print_stacktrace(model_out); + FILE *file = fdopen(model_out, "w"); + print_stacktrace(file); + fclose(file); #else void *array[MAX_TRACE_LEN]; char **strings; @@ -40,14 +42,9 @@ void print_trace(void) #endif /* CONFIG_STACKTRACE */ } -void model_print_summary(void) -{ - model->print_summary(); -} - void assert_hook(void) { - model_print("Add breakpoint to line %u in file %s.\n",__LINE__,__FILE__); + model_print("Add breakpoint to line %u in file %s.\n", __LINE__, __FILE__); } void model_assert(bool expr, const char *file, int line) @@ -69,7 +66,7 @@ static int fd_user_out; /**< @brief File descriptor from which to read user prog * * Redirects user program's stdout to a pipe so that we can dump it * selectively, when displaying bugs, etc. - * Also connects a special file 'model_out' directly to stdout, for printing + * Also connects a file descriptor 'model_out' directly to stdout, for printing * data when needed. * * The model-checker can selectively choose to print/hide the user program @@ -86,11 +83,12 @@ static int fd_user_out; /**< @brief File descriptor from which to read user prog */ void redirect_output() { - int fd; - /* Save stdout for later use */ - fd = dup(fileno(stdout)); - model_out = fdopen(fd, "w"); + model_out = dup(STDOUT_FILENO); + if (model_out < 0) { + perror("dup"); + exit(EXIT_FAILURE); + } /* Redirect program output to a pipe */ int pipefd[2]; @@ -98,11 +96,17 @@ void redirect_output() perror("pipe"); exit(EXIT_FAILURE); } - fd = dup2(pipefd[1], fileno(stdout)); // STDOUT_FILENO + if (dup2(pipefd[1], STDOUT_FILENO) < 0) { + perror("dup2"); + exit(EXIT_FAILURE); + } close(pipefd[1]); /* Save the "read" side of the pipe for use later */ - fcntl(pipefd[0], F_SETFL, O_NONBLOCK); + if (fcntl(pipefd[0], F_SETFL, O_NONBLOCK) < 0) { + perror("fcntl"); + exit(EXIT_FAILURE); + } fd_user_out = pipefd[0]; } @@ -149,16 +153,15 @@ void print_program_output() fflush(stdout); /* Read program output pipe and write to (real) stdout */ - int ret; + ssize_t ret; while (1) { ret = read_to_buf(fd_user_out, buf, sizeof(buf)); if (!ret) break; while (ret > 0) { - int res = fwrite(buf, 1, ret, model_out); + ssize_t res = write(model_out, buf, ret); if (res < 0) { - errno = ferror(model_out); - perror("fwrite"); + perror("write"); exit(EXIT_FAILURE); } ret -= res;