f15a692535d165a1d0ecb7c914e3f18b5d3e7120
[lttng-ust.git] / tests / fork / fork.c
1 /*
2 * Copyright (C) 2009 Pierre-Marc Fournier
3 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; version 2.1 of
8 * the License.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20 #include <stdio.h>
21 #include <unistd.h>
22 #include <sys/types.h>
23 #include <stdlib.h>
24
25 #define TRACEPOINT_CREATE_PROBES
26 #include "ust_tests_fork.h"
27
28 int main(int argc, char **argv, char *env[])
29 {
30 int result;
31
32 if (argc < 2) {
33 fprintf(stderr, "usage: fork PROG_TO_EXEC\n");
34 exit(1);
35 }
36
37 printf("Fork test program, parent pid is %d\n", getpid());
38 tracepoint(ust_tests_fork, before_fork);
39
40 result = fork();
41 if (result == -1) {
42 perror("fork");
43 return 1;
44 }
45 if (result == 0) {
46 char *args[] = { "fork2", NULL };
47
48 printf("Child pid is %d\n", getpid());
49
50 tracepoint(ust_tests_fork, after_fork_child, getpid());
51
52 result = execve(argv[1], args, env);
53 if (result == -1) {
54 perror("execve");
55 return 1;
56 }
57 } else {
58 tracepoint(ust_tests_fork, after_fork_parent);
59 }
60
61 return 0;
62 }
This page took 0.030765 seconds and 3 git commands to generate.