tests: Move to kernel style SPDX license identifiers
[lttng-tools.git] / tests / regression / ust / fork / fork2.c
1 /*
2 * Copyright (C) 2009 Pierre-Marc Fournier
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only
5 *
6 */
7
8 #include <stdio.h>
9 #include <unistd.h>
10
11 #define TRACEPOINT_DEFINE
12 #define TRACEPOINT_CREATE_PROBES
13 #include "ust_tests_fork.h"
14
15 int main()
16 {
17 printf("IN FORK2\n");
18
19 tracepoint(ust_tests_fork, after_exec, getpid());
20
21 return 0;
22 }
This page took 0.030035 seconds and 5 git commands to generate.