From: simonmar Date: Wed, 26 Apr 2000 09:29:37 +0000 (+0000) Subject: [project @ 2000-04-26 09:29:37 by simonmar] X-Git-Tag: Approximately_9120_patches~4610 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=95256bc8787b3a9cdbd50f6dafadf5d84354a3e8;p=ghc-hetmet.git [project @ 2000-04-26 09:29:37 by simonmar] comment-only clarifications; Killed means "uncaught exception". --- diff --git a/ghc/includes/RtsAPI.h b/ghc/includes/RtsAPI.h index b28d7ab..b6fd0f1 100644 --- a/ghc/includes/RtsAPI.h +++ b/ghc/includes/RtsAPI.h @@ -1,5 +1,5 @@ /* ---------------------------------------------------------------------------- - * $Id: RtsAPI.h,v 1.12 2000/04/10 14:28:14 sewardj Exp $ + * $Id: RtsAPI.h,v 1.13 2000/04/26 09:29:37 simonmar Exp $ * * (c) The GHC Team, 1998-1999 * @@ -14,10 +14,10 @@ * Running the scheduler */ typedef enum { - NoStatus, /* not finished yet */ - Success, - Killed, /* another thread killed us */ - Interrupted, /* stopped in response to a call to interruptStgRts */ + NoStatus, /* not finished yet */ + Success, /* completed successfully */ + Killed, /* uncaught exception */ + Interrupted, /* stopped in response to a call to interruptStgRts */ Deadlock /* no threads to run, but main thread hasn't finished */ } SchedulerStatus;