Files
AFLplusplus/frida_mode/src/stats/stats_arm32.c
2022-10-11 18:15:51 +01:00

31 lines
489 B
C

#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