Added support for wxEXEC_MAKE_GROUP_LEADER to wxExecute().
Map it to the native CREATE_NEW_PROCESS_GROUP flag as it's broadly similar to Unix semantics. Closes #13676. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70051 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -342,6 +342,9 @@ enum
|
||||
|
||||
// under Unix, if the process is the group leader then passing wxKILL_CHILDREN to wxKill
|
||||
// kills all children as well as pid
|
||||
// under Windows (NT family only), sets the CREATE_NEW_PROCESS_GROUP flag,
|
||||
// which allows to target Ctrl-Break signal to the spawned process.
|
||||
// applies to console processes only.
|
||||
wxEXEC_MAKE_GROUP_LEADER = 4,
|
||||
|
||||
// by default synchronous execution disables all program windows to avoid
|
||||
|
Reference in New Issue
Block a user