mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
create windows task as detached process
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@23333 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
35bb423994
commit
b625b8ffda
2 changed files with 2 additions and 2 deletions
|
@ -2,6 +2,7 @@
|
|||
|
||||
* Source/NSProcessInfo.m: Fix passing int variable to printf format
|
||||
expecting long.
|
||||
* Source/NSTask.m: create windows task as detached process.
|
||||
|
||||
2006-08-25 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
|
|
|
@ -1197,8 +1197,7 @@ quotedFromString(NSString *aString)
|
|||
NULL, /* proc attrs */
|
||||
NULL, /* thread attrs */
|
||||
1, /* inherit handles */
|
||||
CREATE_NO_WINDOW|CREATE_UNICODE_ENVIRONMENT, /* creation flags */
|
||||
//CREATE_UNICODE_ENVIRONMENT, /* creation flags */
|
||||
CREATE_NO_WINDOW|DETACHED_PROCESS|CREATE_UNICODE_ENVIRONMENT,
|
||||
envp, /* env block */
|
||||
(const unichar*)[[self currentDirectoryPath] fileSystemRepresentation],
|
||||
&start_info,
|
||||
|
|
Loading…
Reference in a new issue