carb::launcher::fKillFlagForce

Defined in carb/launcher/ILauncher.h

constexpr KillFlags carb::launcher::fKillFlagForce = 0x00000002

Flag to indicate that a child process should be force killed.

This only has an effect on Linux where a SIGKILL signal will be sent to the process instead of SIGTERM. This flag is ignored on Windows. The potential issue with SIGTERM is that a process can trap and handle that signal in a manner other than terminating the process. The SIGKILL signal however cannot be trapped and will always terminate the process.