The title says it all. In pseudocode...

processHandle = _spawnl(_P_NOWAIT, "foo.exe", ...);

/* time passes... */
WossnameKillFunction(processHandle);

Thanks!

link|improve this question

Why not utilize the Windows API in your Windows program? If you'd rather use POSIX, why mention the Windows API? – Jeff Mercado Jul 5 '11 at 6:44
Both are possible options. If this can't be done with POSIX I'm open to implementing this with suitable Win32 API calls. – MaxVT Jul 5 '11 at 6:49
feedback

2 Answers

up vote 3 down vote accepted

There is no terminate counterpart to the VC++ function _spawnl(), but it does return a Win32 HANDLE that you can use:

HANDLE handle = (HANDLE)_spawnl(...);
TerminateProcess(handle, exit_code);

Note it only returns a HANDLE if you call it with one of the NOWAIT args. If not, it will return the process's exit code.

Of course, it's far better if you can somehow communicate to the process that it should exit gracefully. TerminateProcess will prevent any cleanup code from being called.

(And as a small side note: despite what MSDN says about spawnl() being a deprecated POSIX function, it's actually never been in any POSIX standard! As far as I know it originates from QNX.)

link|improve this answer
feedback

_spawnl returns the HANDLE associated with the process. Therefore you should be able to terminate the process using the plain TerminateProcess function.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.