summaryrefslogtreecommitdiffstats
path: root/runtime/uprobes/uprobes_arch.c
blob: 99ef54c8cba731d41cfcdd609be7e9541e136582 (plain)
1
2
3
4
5
6
7
8
9
10
11
#if defined (__x86_64__)
#include "uprobes_x86_64.c"
#elif defined (__i386__)
#include "uprobes_i386.c"
#elif defined (__powerpc64__)
#include "uprobes_ppc64.c"
#elif defined (__s390__) || defined (__s390x__)
#include "uprobes_s390.c"
#else
#error "Unsupported architecture"
#endif