mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
improve comments
This commit is contained in:
parent
21839365a9
commit
57efbdb09e
1 changed files with 5 additions and 5 deletions
|
@ -1292,16 +1292,16 @@ quotedFromString(NSString *aString)
|
|||
NULL, /* thread attrs */
|
||||
1, /* inherit handles */
|
||||
0
|
||||
|CREATE_NO_WINDOW
|
||||
/* One would have thought the the CREATE_NO_WINDOW flag should be used,
|
||||
* but apparently this breaks for old 16bit applications/tools on XP.
|
||||
* So maybe we want to leave it out?
|
||||
/* We don't want a subtask to be run min a window since that would prevent
|
||||
* startup of background tasks. If a subtask wants a window, it should
|
||||
* create it itself.
|
||||
*/
|
||||
// |DETACHED_PROCESS
|
||||
|CREATE_NO_WINDOW
|
||||
/* We don't set the DETACHED_PROCESS flag as it actually means that the
|
||||
* child task should get a new Console allocated ... and that means it
|
||||
* will pop up a console window ... which looks really bad.
|
||||
*/
|
||||
// |DETACHED_PROCESS
|
||||
|CREATE_UNICODE_ENVIRONMENT,
|
||||
envp, /* env block */
|
||||
(const unichar*)[[self currentDirectoryPath] fileSystemRepresentation],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue