summaryrefslogtreecommitdiffstats
path: root/runtime/uprobes/uprobes_arch.c
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2007-09-28 21:01:58 -0400
committerFrank Ch. Eigler <fche@elastic.org>2007-09-28 21:01:58 -0400
commitc60bdd606b018517e44c72e05641e67679895f0c (patch)
treecf627e42f8a9be21cfa23768589d7d2588925cf5 /runtime/uprobes/uprobes_arch.c
parent0194188e9feba28902bc256bd3a5fdcad37c32a6 (diff)
parentc480bf3d839721308695064f3631651e73312d9c (diff)
downloadsystemtap-steved-c60bdd606b018517e44c72e05641e67679895f0c.tar.gz
systemtap-steved-c60bdd606b018517e44c72e05641e67679895f0c.tar.xz
systemtap-steved-c60bdd606b018517e44c72e05641e67679895f0c.zip
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'runtime/uprobes/uprobes_arch.c')
-rw-r--r--runtime/uprobes/uprobes_arch.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/runtime/uprobes/uprobes_arch.c b/runtime/uprobes/uprobes_arch.c
new file mode 100644
index 00000000..99ef54c8
--- /dev/null
+++ b/runtime/uprobes/uprobes_arch.c
@@ -0,0 +1,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