about summary refs log tree commit diff
path: root/frida_mode/src/stats/stats_arm32.c
diff options
context:
space:
mode:
Diffstat (limited to 'frida_mode/src/stats/stats_arm32.c')
-rw-r--r--frida_mode/src/stats/stats_arm32.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/frida_mode/src/stats/stats_arm32.c b/frida_mode/src/stats/stats_arm32.c
new file mode 100644
index 00000000..71953af3
--- /dev/null
+++ b/frida_mode/src/stats/stats_arm32.c
@@ -0,0 +1,36 @@
+#include "frida-gumjs.h"
+
+#include "debug.h"
+
+#include "stats.h"
+#include "util.h"
+
+#if defined(__arm__)
+
+gboolean stats_is_supported_arch(void) {
+
+  return FALSE;
+
+}
+
+size_t stats_data_size_arch(void) {
+
+  FATAL("Stats not supported on this architecture");
+
+}
+
+void stats_write_arch(void) {
+
+  FATAL("Stats not supported on this architecture");
+
+}
+
+void stats_collect_arch(const cs_insn *instr) {
+
+  UNUSED_PARAMETER(instr);
+  FATAL("Stats not supported on this architecture");
+
+}
+
+#endif
+