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