3 #include "thread_map.h"
12 static void sig_handler(int sig __maybe_unused
)
18 * perf_evlist__prepare_workload will send a SIGUSR1 if the fork fails, since
19 * we asked by setting its exec_error to this handler.
21 static void workload_exec_failed_signal(int signo __maybe_unused
,
22 siginfo_t
*info __maybe_unused
,
23 void *ucontext __maybe_unused
)
30 * This test will start a workload that does nothing then it checks
31 * if the number of exit event reported by the kernel is 1 or not
32 * in order to check the kernel returns correct number of event.
34 int test__task_exit(void)
37 union perf_event
*event
;
38 struct perf_evsel
*evsel
;
39 struct perf_evlist
*evlist
;
40 struct target target
= {
44 const char *argv
[] = { "true", NULL
};
46 signal(SIGCHLD
, sig_handler
);
48 evlist
= perf_evlist__new_default();
50 pr_debug("perf_evlist__new_default\n");
55 * Create maps of threads and cpus to monitor. In this case
56 * we start with all threads and cpus (-1, -1) but then in
57 * perf_evlist__prepare_workload we'll fill in the only thread
58 * we're monitoring, the one forked there.
60 evlist
->cpus
= cpu_map__dummy_new();
61 evlist
->threads
= thread_map__new_by_tid(-1);
62 if (!evlist
->cpus
|| !evlist
->threads
) {
64 pr_debug("Not enough memory to create thread/cpu maps\n");
65 goto out_delete_evlist
;
68 err
= perf_evlist__prepare_workload(evlist
, &target
, argv
, false,
69 workload_exec_failed_signal
);
71 pr_debug("Couldn't run the workload!\n");
72 goto out_delete_evlist
;
75 evsel
= perf_evlist__first(evlist
);
77 evsel
->attr
.sample_freq
= 0;
78 evsel
->attr
.inherit
= 0;
79 evsel
->attr
.watermark
= 0;
80 evsel
->attr
.wakeup_events
= 1;
81 evsel
->attr
.exclude_kernel
= 1;
83 err
= perf_evlist__open(evlist
);
85 pr_debug("Couldn't open the evlist: %s\n", strerror(-err
));
86 goto out_delete_evlist
;
89 if (perf_evlist__mmap(evlist
, 128, true) < 0) {
90 pr_debug("failed to mmap events: %d (%s)\n", errno
,
92 goto out_delete_evlist
;
95 perf_evlist__start_workload(evlist
);
98 while ((event
= perf_evlist__mmap_read(evlist
, 0)) != NULL
) {
99 if (event
->header
.type
== PERF_RECORD_EXIT
)
102 perf_evlist__mmap_consume(evlist
, 0);
105 if (!exited
|| !nr_exit
) {
106 poll(evlist
->pollfd
, evlist
->nr_fds
, -1);
111 pr_debug("received %d EXIT records\n", nr_exit
);
116 perf_evlist__delete(evlist
);