vlib: leave SIGPROF signal with its default handler
When profiling VPP with MAP (a software profile suite on Arm CPUs, see details in https://www.arm.com/products/development-tools/server-and-hpc/forge/map) on Arm servers, VPP will receive SIGPROF signal because MAP uses SIGPROF signal to drive its sampler to do profiling on VPP. However, the default action of SIGPROF signal handler in VPP such as unix_signal_handler() is process termination. To profile VPP with MAP, the SIGPROF handler should be left as default, and MAP sampler will overwrite it with its own implementation. Type: feature Change-Id: Ie14e513d35ec27a66e95067689408bad8ed1ad6b Signed-off-by: Jieqiang Wang <jieqiang.wang@arm.com>
This commit is contained in:

committed by
Damjan Marion

parent
2ed4204c91
commit
6f533d780d
@ -266,6 +266,7 @@ setup_signal_handlers (void)
|
||||
case SIGSTOP:
|
||||
case SIGUSR1:
|
||||
case SIGUSR2:
|
||||
case SIGPROF:
|
||||
continue;
|
||||
|
||||
/* ignore SIGPIPE, SIGCHLD */
|
||||
|
@ -213,6 +213,7 @@ setup_signal_handlers (unix_main_t * um)
|
||||
case SIGSTOP:
|
||||
case SIGUSR1:
|
||||
case SIGUSR2:
|
||||
case SIGPROF:
|
||||
continue;
|
||||
|
||||
/* ignore SIGPIPE, SIGCHLD */
|
||||
|
@ -81,6 +81,7 @@ setup_signal_handlers (void)
|
||||
case SIGSTOP:
|
||||
case SIGUSR1:
|
||||
case SIGUSR2:
|
||||
case SIGPROF:
|
||||
continue;
|
||||
|
||||
/* ignore SIGPIPE, SIGCHLD */
|
||||
|
Reference in New Issue
Block a user