summaryrefslogtreecommitdiffstats
path: root/runtime/uprobes2/uprobes_arch.h
blob: cce57757c3ca93874a9e434ce50e69bfe44bd23f (plain)
1
2
3
4
5
6
7
8
9
10
11
#if defined (__x86_64__) || defined(__i386)
#include "uprobes_x86.h"
#elif defined (__powerpc__)
#include "../uprobes/uprobes_ppc.h"
#elif defined (__s390__) || defined (__s390x__)
#include "../uprobes/uprobes_s390.h"
#elif defined (__ia64__)
#include "../uprobes/uprobes_ia64.h"
#else
#error "Unsupported architecture"
#endif