tracexec 0.8.2

Tracer for execve{,at} and pre-exec behavior, launcher for debuggers.
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __VMLINUX_COMMON_H__
#define __VMLINUX_COMMON_H__

#ifdef TRACEXEC_TARGET_X86_64
#include "x86_64/vmlinux.h"
#elif TRACEXEC_TARGET_AARCH64
#include "aarch64/vmlinux.h"
#elif TRACEXEC_TARGET_RISCV64
#include "riscv64/vmlinux.h"
#endif

#endif