about summary refs log tree commit diff
path: root/frida_mode/src/stats/stats_arm32.c
blob: 71953af3b0cb39000826d75ee9b13ba5f7266a4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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