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