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

[project @ 1999-10-04 16:13:18 by simonmar]

allow raising exceptions in threads blocked on I/O or time delays
parent 4b42f56f
No related merge requests found
/* -----------------------------------------------------------------------------
* $Id: Schedule.c,v 1.25 1999/09/10 11:11:51 simonmar Exp $
* $Id: Schedule.c,v 1.26 1999/10/04 16:13:18 simonmar Exp $
*
* (c) The GHC Team, 1998-1999
*
......@@ -732,11 +732,23 @@ unblockThread(StgTSO *tso)
barf("unblockThread (BLACKHOLE): TSO not found");
}
case BlockedOnDelay:
case BlockedOnRead:
case BlockedOnWrite:
case BlockedOnDelay:
/* ToDo */
barf("unblockThread {read,write,delay}");
{
last = &blocked_queue_hd;
for (t = blocked_queue_hd; t != END_TSO_QUEUE;
last = &t->link, t = t->link) {
if (t == tso) {
*last = tso->link;
if (blocked_queue_tl == t) {
blocked_queue_tl = tso->link;
}
goto done;
}
}
barf("unblockThread (I/O): TSO not found");
}
default:
barf("unblockThread");
......
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