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

Function is_running

icicle-cortexm/fuzzware-native/timer.c:298–304  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

296}
297
298uint32_t is_running(struct TimerState* timers, uint32_t id) {
299 if(id >= MAX_TIMERS) {
300 perror("[TIMER ERROR] is_running: Too high id passed\n");
301 exit(-1);
302 }
303 return timers->timers[id].is_active;
304}
305
306uint64_t curr_val(struct TimerState* timers, uint32_t id) {
307 if(id >= MAX_TIMERS) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected