Skip to content
Snippets Groups Projects
Commit 7dad6ad9 authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 2000-04-26 09:28:18 by simonmar]

note that a return status of Killed means "uncaught exception".
parent 2878ae56
No related merge requests found
/* -----------------------------------------------------------------------------
* $Id: Main.c,v 1.23 2000/04/11 16:49:20 sewardj Exp $
* $Id: Main.c,v 1.24 2000/04/26 09:28:18 simonmar Exp $
*
* (c) The GHC Team 1998-2000
*
......@@ -112,7 +112,7 @@ int main(int argc, char *argv[])
exit_status = EXIT_DEADLOCK;
break;
case Killed:
prog_belch("main thread killed");
prog_belch("main thread exited (uncaught exception)");
exit_status = EXIT_KILLED;
break;
case Interrupted:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment