2 * Copyright (c) 2011 David Goulet <david.goulet@polymtl.ca>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * as published by the Free Software Foundation; only version 2
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
28 #include <lttng/lttng.h>
34 int main(int argc
, char **argv
)
36 struct lttng_handle
*handle
= NULL
;
37 struct lttng_domain dom
;
38 struct lttng_event event
;
39 char *channel_name
= "channel0";
40 char *session_name
= "ust_global_all_events_basic";
43 memset(&dom
, 0, sizeof(dom
));
44 memset(&event
, 0, sizeof(event
));
45 dom
.type
= LTTNG_DOMAIN_UST
;
46 event
.type
= LTTNG_EVENT_TRACEPOINT
;
47 event
.loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
49 printf("\nTesting tracing all UST events:\n");
50 printf("-----------\n");
53 printf("Missing session trace path\n");
57 printf("Creating tracing session (%s): ", argv
[1]);
58 if ((ret
= lttng_create_session(session_name
, argv
[1])) < 0) {
59 printf("error creating the session : %s\n", lttng_strerror(ret
));
64 printf("Creating session handle: ");
65 if ((handle
= lttng_create_handle(session_name
, &dom
)) == NULL
) {
66 printf("error creating handle: %s\n", lttng_strerror(ret
));
71 printf("Enabling all UST events: ");
72 if ((ret
= lttng_enable_event(handle
, &event
, channel_name
)) < 0) {
73 printf("error enabling event: %s\n", lttng_strerror(ret
));
78 printf("Start tracing: ");
79 if ((ret
= lttng_start_tracing(session_name
)) < 0) {
80 printf("error starting tracing: %s\n", lttng_strerror(ret
));
87 printf("Stop tracing: ");
88 if ((ret
= lttng_stop_tracing(session_name
)) < 0) {
89 printf("error stopping tracing: %s\n", lttng_strerror(ret
));
94 printf("Destroy tracing session: ");
95 if ((ret
= lttng_destroy_session(session_name
)) < 0) {
96 printf("error destroying session: %s\n", lttng_strerror(ret
));
105 assert(handle
!= NULL
);
110 lttng_destroy_session(session_name
);
111 lttng_destroy_handle(handle
);
This page took 0.033497 seconds and 5 git commands to generate.