libclues
Linux C++ Tracing Library
Loading...
Searching...
No Matches
fwd.hxx
1#pragma once
2
3#include <stdint.h>
4
5namespace clues {
6
7enum class SystemCallNr : uint64_t;
8enum class SystemCallNrI386 : uint64_t;
9enum class SystemCallNrX64 : uint64_t;
10enum class SystemCallNrX32 : uint64_t;
11enum class SystemCallNrAARCH64 : uint64_t;
12
13} // end ns
SystemCallNrAARCH64
Native system call numbers as used by Linux on the aarch64 ABI.
Definition aarch64.hxx:31
SystemCallNr
Abstract system call number usable across architectures and ABIs.
Definition generic.hxx:29
SystemCallNrX64
Native system call numbers as used by Linux on the x64 ABI.
Definition x64.hxx:31
SystemCallNrI386
Native system call numbers as used by Linux on the i386 ABI.
Definition i386.hxx:32