File: syscalls_pointers.h

package info (click to toggle)
lttng-modules 2.14.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,808 kB
  • sloc: ansic: 74,851; sh: 548; makefile: 62
file content (27 lines) | stat: -rw-r--r-- 548 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// SPDX-FileCopyrightText: 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
//
// SPDX-License-Identifier: GPL-2.0-only OR LGPL-2.1-only

#ifdef CONFIG_X86_64
#include "x86-64-syscalls_pointers.h"
#endif

#ifdef CONFIG_X86_32
#include "x86-32-syscalls_pointers.h"
#endif

#ifdef CONFIG_ARM
#include "arm-32-syscalls_pointers.h"
#endif

#ifdef CONFIG_PPC
#include "powerpc-32-syscalls_pointers.h"
#endif

#ifdef CONFIG_CPU_MIPS32
#include "mips-32-syscalls_pointers.h"
#endif

#ifdef CONFIG_ARM64
#include "arm-64-syscalls_pointers.h"
#endif