8198a2c451ace4cc7b4ff5c3244823e1046e1054
[ust.git] / tests / register_test / register_test.c
1 /* Copyright (C) 2010 Nils Carlson
2 *
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
7 *
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16 */
17
18 #include <stdio.h>
19 #include <unistd.h>
20 #include <sys/mman.h>
21 #include <stdarg.h>
22 #include <sys/types.h>
23 #include <sys/stat.h>
24 #include <fcntl.h>
25 #include <signal.h>
26 #include <pthread.h>
27
28 #include <ust/marker.h>
29 #include "usterr.h"
30 #include "tp.h"
31
32 DEFINE_TRACEPOINT(hello_tptest);
33
34
35 struct hello_trace_struct {
36 char *message;
37 };
38
39 struct hello_trace_struct hello_struct = {
40 .message = "ehlo\n",
41 };
42
43 void tptest_probe(void *data, int anint)
44 {
45 struct hello_trace_struct *hello;
46 char message[30];
47 hello=(struct hello_trace_struct *)data;
48 //printf("this is the message: %s\n", hello->message);
49 snprintf(message, 30, "this is the %s\n", hello->message);
50 }
51
52
53 #define HELLO_LENGTH 100
54
55 static void * register_thread_main(void *data)
56 {
57 int i, j = 0;
58
59 struct hello_trace_struct hello[HELLO_LENGTH];
60
61 for (i=0; i<HELLO_LENGTH; i++) {
62 hello[i].message = malloc(6*sizeof(char));
63 hello[i].message[0] = 'a'+i%25;
64 memcpy(&hello[i].message[1], "ello", 5);
65 }
66
67 for (i=0; i<1000; i++) {
68 while (!register_tracepoint(hello_tptest, tptest_probe,
69 &hello[j%HELLO_LENGTH])) {
70 usleep(10);
71 j++;
72 }
73 printf("Registered all\n");
74 while (!unregister_tracepoint(hello_tptest, tptest_probe,
75 &hello[j%HELLO_LENGTH])) {
76 usleep(10);
77 j++;
78 }
79 printf("Unregistered all\n");
80 }
81 return NULL;
82 }
83
84
85 int main(int argc, char **argv)
86 {
87 pthread_t register_thread;
88 int i;
89
90 pthread_create(&register_thread, NULL, register_thread_main, NULL);
91 for(i=0; i<1000000; i++) {
92 tracepoint(hello_tptest, i);
93 }
94
95 return 0;
96 }
This page took 0.030659 seconds and 3 git commands to generate.