This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: ExitProcess() with negative argument -> zero exit status from wait*()


On Mon, Jun 03, 2002 at 11:01:51PM -0400, Bob Byrnes wrote:
>If a process exits by calling ExitProcess() with a negative argument,
>then cygwin returns a zero exit status to the calling process.  This
>seems wrong, and is different from the behavior of GetExitCodeProcess().

Don't mix the Windows API with the UNIX api.  You're asking for trouble.

If you have to exit, use exit() or _exit().

Either that, or go all of the way and don't use wait().  Start your process
with CreateProcess and use WaitForSingleObject to wait for it.

cgf

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]