MCPcopy Create free account
hub / github.com/F-Stack/f-stack / db_trace_self_wrapper

Function db_trace_self_wrapper

freebsd/ddb/db_main.c:279–289  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

277}
278
279static void
280db_trace_self_wrapper(void)
281{
282 jmp_buf jb;
283 void *prev_jb;
284
285 prev_jb = kdb_jmpbuf(jb);
286 if (setjmp(jb) == 0)
287 db_trace_self();
288 (void)kdb_jmpbuf(prev_jb);
289}
290
291static void
292db_trace_thread_wrapper(struct thread *td)

Callers

nothing calls this directly

Calls 3

kdb_jmpbufFunction · 0.85
setjmpFunction · 0.85
db_trace_selfFunction · 0.50

Tested by

no test coverage detected