4 * LTTng Userspace Tracer (UST) - benchmark tool
6 * Copyright 2010 - Douglas Santos <douglas.santos@polymtl.ca>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
30 #include <urcu/compiler.h>
33 #define TRACEPOINT_DEFINE
34 #include "ust_tests_benchmark.h"
38 static unsigned long nr_events
;
47 for (i
= 0; i
< 100; i
++)
50 tracepoint(ust_tests_benchmark
, tpbench
, v
);
54 void *function(void *arg
)
58 for (i
= 0; i
< nr_events
; i
++) {
64 void usage(char **argv
) {
65 printf("Usage: %s nr_cpus nr_events\n", argv
[0]);
69 int main(int argc
, char **argv
)
79 nr_cpus
= atoi(argv
[1]);
80 printf("using %d processor(s)\n", nr_cpus
);
82 nr_events
= atol(argv
[2]);
83 printf("using %ld events per cpu\n", nr_events
);
85 pthread_t thread
[nr_cpus
];
86 for (i
= 0; i
< nr_cpus
; i
++) {
87 if (pthread_create(&thread
[i
], NULL
, function
, NULL
)) {
88 fprintf(stderr
, "thread create %d failed\n", i
);
93 for (i
= 0; i
< nr_cpus
; i
++) {
94 if (pthread_join(thread
[i
], &retval
)) {
95 fprintf(stderr
, "thread join %d failed\n", i
);
This page took 0.044928 seconds and 4 git commands to generate.