blob: 6c72a476051d5ba4bf8cf03a34e5357bf08c224f (
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
|
#include "frida-gumjs.h"
#include "stats.h"
#include "util.h"
#if defined(__arm__)
void starts_arch_init(void) {
FFATAL("Stats not supported on this architecture");
}
void stats_write_arch(stats_data_t *data) {
UNUSED_PARAMETER(data);
FFATAL("Stats not supported on this architecture");
}
void stats_collect_arch(const cs_insn *instr, gboolean begin) {
UNUSED_PARAMETER(instr);
UNUSED_PARAMETER(begin);
FFATAL("Stats not supported on this architecture");
}
#endif
|