Merge "Modify a clerical error to make the code be readable."

This commit is contained in:
Zuul 2019-07-29 15:24:46 +00:00 committed by Gerrit Code Review
commit 712a91ea1b
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ int signal_hdlr_init ( int sig_num )
int rc ;
memset (&_pmon_ctrl_ptr->info, 0, sizeof(_pmon_ctrl_ptr->info));
memset (&_pmon_ctrl_ptr->prev, 0, sizeof(_pmon_ctrl_ptr->info));
memset (&_pmon_ctrl_ptr->prev, 0, sizeof(_pmon_ctrl_ptr->prev));
_pmon_ctrl_ptr->info.sa_sigaction = _process_death_hdlr ;
_pmon_ctrl_ptr->info.sa_flags = (SA_NOCLDSTOP | SA_NOCLDWAIT | SA_SIGINFO) ;