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

Function db_trace_thread_wrapper

freebsd/ddb/db_main.c:291–301  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

289}
290
291static void
292db_trace_thread_wrapper(struct thread *td)
293{
294 jmp_buf jb;
295 void *prev_jb;
296
297 prev_jb = kdb_jmpbuf(jb);
298 if (setjmp(jb) == 0)
299 db_trace_thread(td, -1);
300 (void)kdb_jmpbuf(prev_jb);
301}

Callers

nothing calls this directly

Calls 3

kdb_jmpbufFunction · 0.85
setjmpFunction · 0.85
db_trace_threadFunction · 0.50

Tested by

no test coverage detected