[PAL] Fix uninitialized field action.sa_flags
action.sa_flags will only be initialized in the truth branch, while in the false branch,
only sa_handler is initialized. Before action.sa_flags |= SA_NOCLDWAIT,
action.sa_flags should be properly initialized (in this case 0x0u).
Signed-off-by: Gary <gang1.wang@intel.com>