1 /* Copyright (C) 2010 Nils Carlson
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.
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.
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
22 #include <sys/types.h>
28 #include <ust/marker.h>
33 DEFINE_TRACE(hello_tptest
);
36 struct hello_trace_struct
{
40 struct hello_trace_struct hello_struct
= {
44 void tptest_probe(void *data
, int anint
)
46 struct hello_trace_struct
*hello
;
48 hello
=(struct hello_trace_struct
*)data
;
49 //printf("this is the message: %s\n", hello->message);
50 snprintf(message
, 30, "this is the %s\n", hello
->message
);
54 #define HELLO_LENGTH 100
56 static void * register_thread_main(void *data
)
60 struct hello_trace_struct hello
[HELLO_LENGTH
];
62 for (i
=0; i
<HELLO_LENGTH
; i
++) {
63 hello
[i
].message
= malloc(6*sizeof(char));
64 hello
[i
].message
[0] = 'a'+i
%25;
65 memcpy(&hello
[i
].message
[1], "ello", 5);
68 for (i
=0; i
<1000; i
++) {
69 while (!register_trace_hello_tptest(tptest_probe
,
70 &hello
[j
%HELLO_LENGTH
])) {
74 printf("Registered all\n");
75 while (!unregister_trace_hello_tptest(tptest_probe
,
76 &hello
[j
%HELLO_LENGTH
])) {
80 printf("Unregistered all\n");
86 int main(int argc
, char **argv
)
88 pthread_t register_thread
;
91 pthread_create(®ister_thread
, NULL
, register_thread_main
, NULL
);
92 for(i
=0; i
<1000000; i
++) {
93 trace_hello_tptest(i
);