MCPcopy Create free account
hub / github.com/MultiFuzz/MultiFuzz / InterruptTrigger

Class InterruptTrigger

icicle-cortexm/fuzzware-native/interrupt_triggers.c:178–178  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

176
177void *interrupt_trigger_take_snapshot(uc_engine *uc) {
178 size_t size = uc->fw->num_triggers_inuse * sizeof(struct InterruptTrigger);
179 InterruptTrigger *result = malloc(size);
180 memcpy(result, &uc->fw->triggers[0], size);
181 return result;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected