X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=tests%2Fhello%2Fhello.c;h=d30901a5517108a5e6c67135e2b279a25a9e181b;hb=8d8a24c8565ce6dce7e7bd1045a95d1d2af5e536;hp=0417f1e962215807ef1f590314b01167e7b14b85;hpb=da485f9c8477cb58da0a5a6ae60195b29a3fbd85;p=lttng-ust.git diff --git a/tests/hello/hello.c b/tests/hello/hello.c index 0417f1e9..d30901a5 100644 --- a/tests/hello/hello.c +++ b/tests/hello/hello.c @@ -1,3 +1,22 @@ +/* + * Copyright (C) 2009 Pierre-Marc Fournier + * Copyright (C) 2011 Mathieu Desnoyers + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; version 2.1 of + * the License. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + #include #include #include @@ -7,18 +26,13 @@ #include #include -#include "marker.h" #include "usterr.h" -#include "tracer.h" -#include "marker-control.h" -#include "relay.h" #include "tp.h" - void inthandler(int sig) { - printf("in handler\n"); - exit(0); + printf("in SIGUSR1 handler\n"); + tracepoint(ust_tests_hello_tptest_sighandler); } int init_int_handler(void) @@ -27,7 +41,7 @@ int init_int_handler(void) struct sigaction act; result = sigemptyset(&act.sa_mask); - if(result == -1) { + if (result == -1) { PERROR("sigemptyset"); return -1; } @@ -38,8 +52,8 @@ int init_int_handler(void) /* Only defer ourselves. Also, try to restart interrupted * syscalls to disturb the traced program as little as possible. */ - result = sigaction(SIGINT, &act, NULL); - if(result == -1) { + result = sigaction(SIGUSR1, &act, NULL); + if (result == -1) { PERROR("sigaction"); return -1; } @@ -47,7 +61,7 @@ int init_int_handler(void) return 0; } -int main() +int main(int argc, char **argv) { int i; @@ -56,23 +70,10 @@ int main() printf("Hello, World!\n"); sleep(1); - for(i=0; i<50; i++) { - trace_mark(ust, bar, "str %s", "FOOBAZ"); - trace_mark(ust, bar2, "number1 %d number2 %d", 53, 9800); - trace_hello_tptest(i); + + for (i = 0; i < 50; i++) { + tracepoint(ust_tests_hello_tptest, i); usleep(100000); } - - scanf("%*s"); - - ltt_trace_stop("auto"); - ltt_trace_destroy("auto"); - - DBG("TRACE STOPPED"); - scanf("%*s"); - return 0; } - -MARKER_LIB; -TRACEPOINT_LIB;