FRET-qemu/libafl/system.c
Romain Malmain ee43af7f80
Run thread hooks for KVM mode (#84)
* Run thread hooks for KVM mode

* Unify qemu init function symbol for systemmode and usermode

* get tid from caller instead of callee
2024-08-21 15:36:05 +02:00

7 lines
152 B
C

#include "qemu/osdep.h"
#include "sysemu/sysemu.h"
#include "libafl/system.h"
void libafl_qemu_init(int argc, char** argv) { qemu_init(argc, argv); }