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