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

Function ngx_debug_point

app/nginx-1.28.0/src/os/unix/ngx_process.c:611–628  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

609
610
611void
612ngx_debug_point(void)
613{
614 ngx_core_conf_t *ccf;
615
616 ccf = (ngx_core_conf_t *) ngx_get_conf(ngx_cycle->conf_ctx,
617 ngx_core_module);
618
619 switch (ccf->debug_points) {
620
621 case NGX_DEBUG_POINTS_STOP:
622 raise(SIGSTOP);
623 break;
624
625 case NGX_DEBUG_POINTS_ABORT:
626 ngx_abort();
627 }
628}
629
630
631ngx_int_t

Callers 14

ngx_http_write_filterFunction · 0.85
ngx_http_ssi_outputFunction · 0.85
ngx_http_sub_outputFunction · 0.85
ngx_writev_chainFunction · 0.85
ngx_linux_sendfile_chainFunction · 0.85
ngx_worker_process_exitFunction · 0.85
ngx_slab_alloc_lockedFunction · 0.85
ngx_memcpyFunction · 0.85
ngx_output_chainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected