X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=tests%2Fhello%2Fhello.c;h=bb44773daa8ee83d1e11cd8b0be97e9843c71b11;hb=8161463975e218e0833d31ab1577a7ceb9e8e9f3;hp=a786fbf89fa90d3cbea1109824b6a3aebf92adff;hpb=cc7b66ba103c213a84159c2128cd4096507bdd2b;p=ust.git diff --git a/tests/hello/hello.c b/tests/hello/hello.c index a786fbf..bb44773 100644 --- a/tests/hello/hello.c +++ b/tests/hello/hello.c @@ -1,4 +1,6 @@ -/* Copyright (C) 2009 Pierre-Marc Fournier +/* + * 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 @@ -41,7 +43,7 @@ int init_int_handler(void) struct sigaction act; result = sigemptyset(&act.sa_mask); - if(result == -1) { + if (result == -1) { PERROR("sigemptyset"); return -1; } @@ -53,7 +55,7 @@ int init_int_handler(void) * syscalls to disturb the traced program as little as possible. */ result = sigaction(SIGINT, &act, NULL); - if(result == -1) { + if (result == -1) { PERROR("sigaction"); return -1; } @@ -70,7 +72,7 @@ int main() printf("Hello, World!\n"); sleep(1); - for(i=0; i<50; i++) { + for (i = 0; i < 50; i++) { ust_marker(bar, "str %s", "FOOBAZ"); ust_marker(bar2, "number1 %d number2 %d", 53, 9800); tracepoint(hello_tptest, i);