X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Futils%2Ftestapp%2Fgen-ust-events%2Fgen-ust-events.c;h=1ce34423b330ab14cccf50597b2fa1d0e469148c;hp=f1eb18f52f927cb7ffd6181d11f2d19666768e42;hb=b2047add047d9965a2fd27d4a61d83170bbfed99;hpb=b734f5f715395468cf9c68166820558126264d52 diff --git a/tests/utils/testapp/gen-ust-events/gen-ust-events.c b/tests/utils/testapp/gen-ust-events/gen-ust-events.c index f1eb18f52..1ce34423b 100644 --- a/tests/utils/testapp/gen-ust-events/gen-ust-events.c +++ b/tests/utils/testapp/gen-ust-events/gen-ust-events.c @@ -31,52 +31,12 @@ #include #include #include +#include "utils.h" +#include "signal-helper.h" #define TRACEPOINT_DEFINE #include "tp.h" -void create_file(const char *path) -{ - static bool file_created = false; - int ret; - - if (!path || file_created) { - return; - } - - ret = creat(path, S_IRWXU); - if (ret < 0) { - fprintf(stderr, "Failed to create file %s\n", path); - return; - } - - (void) close(ret); - file_created = true; -} - -static -void wait_on_file(const char *path) -{ - if (!path) { - return; - } - for (;;) { - int ret; - struct stat buf; - - ret = stat(path, &buf); - if (ret == -1 && errno == ENOENT) { - (void) poll(NULL, 0, 10); /* 10 ms delay */ - continue; /* retry */ - } - if (ret) { - perror("stat"); - exit(EXIT_FAILURE); - } - break; /* found */ - } -} - int main(int argc, char **argv) { unsigned int i, netint; @@ -84,11 +44,16 @@ int main(int argc, char **argv) char text[10] = "test"; double dbl = 2.0; float flt = 2222.0; - int nr_iter = 100; + int nr_iter = 100, ret = 0, first_event_file_created = 0; useconds_t nr_usec = 0; char *after_first_event_file_path = NULL; char *before_last_event_file_path = NULL; + if (set_signal_handler()) { + ret = -1; + goto end; + } + if (argc >= 2) { /* * If nr_iter is negative, do an infinite tracing loop. @@ -115,7 +80,12 @@ int main(int argc, char **argv) * Wait on synchronization before writing last * event. */ - wait_on_file(before_last_event_file_path); + if (before_last_event_file_path) { + ret = wait_on_file(before_last_event_file_path); + if (ret != 0) { + goto end; + } + } } netint = htonl(i); tracepoint(tp, tptest, i, netint, values, text, @@ -125,11 +95,27 @@ int main(int argc, char **argv) * First loop we create the file if asked to indicate * that at least one tracepoint has been hit. */ - create_file(after_first_event_file_path); + if (after_first_event_file_path && first_event_file_created == 0) { + ret = create_file(after_first_event_file_path); + + if (ret != 0) { + goto end; + } else { + first_event_file_created = 1; + } + } + if (nr_usec) { - usleep(nr_usec); + if (usleep_safe(nr_usec)) { + ret = -1; + goto end; + } + } + if (should_quit) { + break; } } - return 0; +end: + exit(!ret ? EXIT_SUCCESS : EXIT_FAILURE); }