This is a mirror of official site: http://jasper-net.blogspot.com/

What does it mean when my program exits with the message "This application has requested the Runtime to terminate it in an unusual way"?

| Sunday, December 11, 2011
You're running your program, and then it suddenly exits with the message This application has requested the Runtime to terminate it in an unusual way. What happened?

That message is printed by the C runtime function abort, the same function that also causes your program to terminate with exit code 3.

Your program might call abort explicitly, or it might end up being called implicitly by the runtime library itself.

    The assert macro calls abort when an assertion fails.
    By default, the terminate function calls abort.

Read more: The old new thing
QR: 10245330.aspx

Posted via email from Jasper-net

0 comments: