Use message-passing to implement throwTo in the RTS
[ghc-hetmet.git] / rts / Schedule.c
1 /* ---------------------------------------------------------------------------
2  *
3  * (c) The GHC Team, 1998-2006
4  *
5  * The scheduler and thread-related functionality
6  *
7  * --------------------------------------------------------------------------*/
8
9 #include "PosixSource.h"
10 #define KEEP_LOCKCLOSURE
11 #include "Rts.h"
12
13 #include "sm/Storage.h"
14 #include "RtsUtils.h"
15 #include "StgRun.h"
16 #include "Schedule.h"
17 #include "Interpreter.h"
18 #include "Printer.h"
19 #include "RtsSignals.h"
20 #include "sm/Sanity.h"
21 #include "Stats.h"
22 #include "STM.h"
23 #include "Prelude.h"
24 #include "ThreadLabels.h"
25 #include "Updates.h"
26 #include "Proftimer.h"
27 #include "ProfHeap.h"
28 #include "Weak.h"
29 #include "sm/GC.h" // waitForGcThreads, releaseGCThreads, N
30 #include "Sparks.h"
31 #include "Capability.h"
32 #include "Task.h"
33 #include "AwaitEvent.h"
34 #if defined(mingw32_HOST_OS)
35 #include "win32/IOManager.h"
36 #endif
37 #include "Trace.h"
38 #include "RaiseAsync.h"
39 #include "Threads.h"
40 #include "Timer.h"
41 #include "ThreadPaused.h"
42
43 #ifdef HAVE_SYS_TYPES_H
44 #include <sys/types.h>
45 #endif
46 #ifdef HAVE_UNISTD_H
47 #include <unistd.h>
48 #endif
49
50 #include <string.h>
51 #include <stdlib.h>
52 #include <stdarg.h>
53
54 #ifdef HAVE_ERRNO_H
55 #include <errno.h>
56 #endif
57
58 /* -----------------------------------------------------------------------------
59  * Global variables
60  * -------------------------------------------------------------------------- */
61
62 #if !defined(THREADED_RTS)
63 // Blocked/sleeping thrads
64 StgTSO *blocked_queue_hd = NULL;
65 StgTSO *blocked_queue_tl = NULL;
66 StgTSO *sleeping_queue = NULL;    // perhaps replace with a hash table?
67 #endif
68
69 /* Threads blocked on blackholes.
70  * LOCK: sched_mutex+capability, or all capabilities
71  */
72 StgTSO *blackhole_queue = NULL;
73
74 /* The blackhole_queue should be checked for threads to wake up.  See
75  * Schedule.h for more thorough comment.
76  * LOCK: none (doesn't matter if we miss an update)
77  */
78 rtsBool blackholes_need_checking = rtsFalse;
79
80 /* Set to true when the latest garbage collection failed to reclaim
81  * enough space, and the runtime should proceed to shut itself down in
82  * an orderly fashion (emitting profiling info etc.)
83  */
84 rtsBool heap_overflow = rtsFalse;
85
86 /* flag that tracks whether we have done any execution in this time slice.
87  * LOCK: currently none, perhaps we should lock (but needs to be
88  * updated in the fast path of the scheduler).
89  *
90  * NB. must be StgWord, we do xchg() on it.
91  */
92 volatile StgWord recent_activity = ACTIVITY_YES;
93
94 /* if this flag is set as well, give up execution
95  * LOCK: none (changes monotonically)
96  */
97 volatile StgWord sched_state = SCHED_RUNNING;
98
99 /*  This is used in `TSO.h' and gcc 2.96 insists that this variable actually 
100  *  exists - earlier gccs apparently didn't.
101  *  -= chak
102  */
103 StgTSO dummy_tso;
104
105 /*
106  * Set to TRUE when entering a shutdown state (via shutdownHaskellAndExit()) --
107  * in an MT setting, needed to signal that a worker thread shouldn't hang around
108  * in the scheduler when it is out of work.
109  */
110 rtsBool shutting_down_scheduler = rtsFalse;
111
112 /*
113  * This mutex protects most of the global scheduler data in
114  * the THREADED_RTS runtime.
115  */
116 #if defined(THREADED_RTS)
117 Mutex sched_mutex;
118 #endif
119
120 #if !defined(mingw32_HOST_OS)
121 #define FORKPROCESS_PRIMOP_SUPPORTED
122 #endif
123
124 /* -----------------------------------------------------------------------------
125  * static function prototypes
126  * -------------------------------------------------------------------------- */
127
128 static Capability *schedule (Capability *initialCapability, Task *task);
129
130 //
131 // These function all encapsulate parts of the scheduler loop, and are
132 // abstracted only to make the structure and control flow of the
133 // scheduler clearer.
134 //
135 static void schedulePreLoop (void);
136 static void scheduleFindWork (Capability *cap);
137 #if defined(THREADED_RTS)
138 static void scheduleYield (Capability **pcap, Task *task, rtsBool);
139 #endif
140 static void scheduleStartSignalHandlers (Capability *cap);
141 static void scheduleCheckBlockedThreads (Capability *cap);
142 static void scheduleProcessInbox(Capability *cap);
143 static void scheduleCheckBlackHoles (Capability *cap);
144 static void scheduleDetectDeadlock (Capability *cap, Task *task);
145 static void schedulePushWork(Capability *cap, Task *task);
146 #if defined(THREADED_RTS)
147 static void scheduleActivateSpark(Capability *cap);
148 #endif
149 static void schedulePostRunThread(Capability *cap, StgTSO *t);
150 static rtsBool scheduleHandleHeapOverflow( Capability *cap, StgTSO *t );
151 static void scheduleHandleStackOverflow( Capability *cap, Task *task, 
152                                          StgTSO *t);
153 static rtsBool scheduleHandleYield( Capability *cap, StgTSO *t, 
154                                     nat prev_what_next );
155 static void scheduleHandleThreadBlocked( StgTSO *t );
156 static rtsBool scheduleHandleThreadFinished( Capability *cap, Task *task,
157                                              StgTSO *t );
158 static rtsBool scheduleNeedHeapProfile(rtsBool ready_to_gc);
159 static Capability *scheduleDoGC(Capability *cap, Task *task,
160                                 rtsBool force_major);
161
162 static rtsBool checkBlackHoles(Capability *cap);
163
164 static StgTSO *threadStackOverflow(Capability *cap, StgTSO *tso);
165 static StgTSO *threadStackUnderflow(Capability *cap, Task *task, StgTSO *tso);
166
167 static void deleteThread (Capability *cap, StgTSO *tso);
168 static void deleteAllThreads (Capability *cap);
169
170 #ifdef FORKPROCESS_PRIMOP_SUPPORTED
171 static void deleteThread_(Capability *cap, StgTSO *tso);
172 #endif
173
174 /* -----------------------------------------------------------------------------
175  * Putting a thread on the run queue: different scheduling policies
176  * -------------------------------------------------------------------------- */
177
178 STATIC_INLINE void
179 addToRunQueue( Capability *cap, StgTSO *t )
180 {
181     // this does round-robin scheduling; good for concurrency
182     appendToRunQueue(cap,t);
183 }
184
185 /* ---------------------------------------------------------------------------
186    Main scheduling loop.
187
188    We use round-robin scheduling, each thread returning to the
189    scheduler loop when one of these conditions is detected:
190
191       * out of heap space
192       * timer expires (thread yields)
193       * thread blocks
194       * thread ends
195       * stack overflow
196
197    GRAN version:
198      In a GranSim setup this loop iterates over the global event queue.
199      This revolves around the global event queue, which determines what 
200      to do next. Therefore, it's more complicated than either the 
201      concurrent or the parallel (GUM) setup.
202   This version has been entirely removed (JB 2008/08).
203
204    GUM version:
205      GUM iterates over incoming messages.
206      It starts with nothing to do (thus CurrentTSO == END_TSO_QUEUE),
207      and sends out a fish whenever it has nothing to do; in-between
208      doing the actual reductions (shared code below) it processes the
209      incoming messages and deals with delayed operations 
210      (see PendingFetches).
211      This is not the ugliest code you could imagine, but it's bloody close.
212
213   (JB 2008/08) This version was formerly indicated by a PP-Flag PAR,
214   now by PP-flag PARALLEL_HASKELL. The Eden RTS (in GHC-6.x) uses it,
215   as well as future GUM versions. This file has been refurbished to
216   only contain valid code, which is however incomplete, refers to
217   invalid includes etc.
218
219    ------------------------------------------------------------------------ */
220
221 static Capability *
222 schedule (Capability *initialCapability, Task *task)
223 {
224   StgTSO *t;
225   Capability *cap;
226   StgThreadReturnCode ret;
227   nat prev_what_next;
228   rtsBool ready_to_gc;
229 #if defined(THREADED_RTS)
230   rtsBool first = rtsTrue;
231   rtsBool force_yield = rtsFalse;
232 #endif
233   
234   cap = initialCapability;
235
236   // Pre-condition: this task owns initialCapability.
237   // The sched_mutex is *NOT* held
238   // NB. on return, we still hold a capability.
239
240   debugTrace (DEBUG_sched, "cap %d: schedule()", initialCapability->no);
241
242   schedulePreLoop();
243
244   // -----------------------------------------------------------
245   // Scheduler loop starts here:
246
247   while (1) {
248
249     // Check whether we have re-entered the RTS from Haskell without
250     // going via suspendThread()/resumeThread (i.e. a 'safe' foreign
251     // call).
252     if (cap->in_haskell) {
253           errorBelch("schedule: re-entered unsafely.\n"
254                      "   Perhaps a 'foreign import unsafe' should be 'safe'?");
255           stg_exit(EXIT_FAILURE);
256     }
257
258     // The interruption / shutdown sequence.
259     // 
260     // In order to cleanly shut down the runtime, we want to:
261     //   * make sure that all main threads return to their callers
262     //     with the state 'Interrupted'.
263     //   * clean up all OS threads assocated with the runtime
264     //   * free all memory etc.
265     //
266     // So the sequence for ^C goes like this:
267     //
268     //   * ^C handler sets sched_state := SCHED_INTERRUPTING and
269     //     arranges for some Capability to wake up
270     //
271     //   * all threads in the system are halted, and the zombies are
272     //     placed on the run queue for cleaning up.  We acquire all
273     //     the capabilities in order to delete the threads, this is
274     //     done by scheduleDoGC() for convenience (because GC already
275     //     needs to acquire all the capabilities).  We can't kill
276     //     threads involved in foreign calls.
277     // 
278     //   * somebody calls shutdownHaskell(), which calls exitScheduler()
279     //
280     //   * sched_state := SCHED_SHUTTING_DOWN
281     //
282     //   * all workers exit when the run queue on their capability
283     //     drains.  All main threads will also exit when their TSO
284     //     reaches the head of the run queue and they can return.
285     //
286     //   * eventually all Capabilities will shut down, and the RTS can
287     //     exit.
288     //
289     //   * We might be left with threads blocked in foreign calls, 
290     //     we should really attempt to kill these somehow (TODO);
291     
292     switch (sched_state) {
293     case SCHED_RUNNING:
294         break;
295     case SCHED_INTERRUPTING:
296         debugTrace(DEBUG_sched, "SCHED_INTERRUPTING");
297 #if defined(THREADED_RTS)
298         discardSparksCap(cap);
299 #endif
300         /* scheduleDoGC() deletes all the threads */
301         cap = scheduleDoGC(cap,task,rtsFalse);
302
303         // after scheduleDoGC(), we must be shutting down.  Either some
304         // other Capability did the final GC, or we did it above,
305         // either way we can fall through to the SCHED_SHUTTING_DOWN
306         // case now.
307         ASSERT(sched_state == SCHED_SHUTTING_DOWN);
308         // fall through
309
310     case SCHED_SHUTTING_DOWN:
311         debugTrace(DEBUG_sched, "SCHED_SHUTTING_DOWN");
312         // If we are a worker, just exit.  If we're a bound thread
313         // then we will exit below when we've removed our TSO from
314         // the run queue.
315         if (!isBoundTask(task) && emptyRunQueue(cap)) {
316             return cap;
317         }
318         break;
319     default:
320         barf("sched_state: %d", sched_state);
321     }
322
323     scheduleFindWork(cap);
324
325     /* work pushing, currently relevant only for THREADED_RTS:
326        (pushes threads, wakes up idle capabilities for stealing) */
327     schedulePushWork(cap,task);
328
329     scheduleDetectDeadlock(cap,task);
330
331 #if defined(THREADED_RTS)
332     cap = task->cap;    // reload cap, it might have changed
333 #endif
334
335     // Normally, the only way we can get here with no threads to
336     // run is if a keyboard interrupt received during 
337     // scheduleCheckBlockedThreads() or scheduleDetectDeadlock().
338     // Additionally, it is not fatal for the
339     // threaded RTS to reach here with no threads to run.
340     //
341     // win32: might be here due to awaitEvent() being abandoned
342     // as a result of a console event having been delivered.
343     
344 #if defined(THREADED_RTS)
345     if (first) 
346     {
347     // XXX: ToDo
348     //     // don't yield the first time, we want a chance to run this
349     //     // thread for a bit, even if there are others banging at the
350     //     // door.
351     //     first = rtsFalse;
352     //     ASSERT_FULL_CAPABILITY_INVARIANTS(cap,task);
353     }
354
355   yield:
356     scheduleYield(&cap,task,force_yield);
357     force_yield = rtsFalse;
358
359     if (emptyRunQueue(cap)) continue; // look for work again
360 #endif
361
362 #if !defined(THREADED_RTS) && !defined(mingw32_HOST_OS)
363     if ( emptyRunQueue(cap) ) {
364         ASSERT(sched_state >= SCHED_INTERRUPTING);
365     }
366 #endif
367
368     // 
369     // Get a thread to run
370     //
371     t = popRunQueue(cap);
372
373     // Sanity check the thread we're about to run.  This can be
374     // expensive if there is lots of thread switching going on...
375     IF_DEBUG(sanity,checkTSO(t));
376
377 #if defined(THREADED_RTS)
378     // Check whether we can run this thread in the current task.
379     // If not, we have to pass our capability to the right task.
380     {
381         InCall *bound = t->bound;
382       
383         if (bound) {
384             if (bound->task == task) {
385                 // yes, the Haskell thread is bound to the current native thread
386             } else {
387                 debugTrace(DEBUG_sched,
388                            "thread %lu bound to another OS thread",
389                            (unsigned long)t->id);
390                 // no, bound to a different Haskell thread: pass to that thread
391                 pushOnRunQueue(cap,t);
392                 continue;
393             }
394         } else {
395             // The thread we want to run is unbound.
396             if (task->incall->tso) { 
397                 debugTrace(DEBUG_sched,
398                            "this OS thread cannot run thread %lu",
399                            (unsigned long)t->id);
400                 // no, the current native thread is bound to a different
401                 // Haskell thread, so pass it to any worker thread
402                 pushOnRunQueue(cap,t);
403                 continue; 
404             }
405         }
406     }
407 #endif
408
409     // If we're shutting down, and this thread has not yet been
410     // killed, kill it now.  This sometimes happens when a finalizer
411     // thread is created by the final GC, or a thread previously
412     // in a foreign call returns.
413     if (sched_state >= SCHED_INTERRUPTING &&
414         !(t->what_next == ThreadComplete || t->what_next == ThreadKilled)) {
415         deleteThread(cap,t);
416     }
417
418     /* context switches are initiated by the timer signal, unless
419      * the user specified "context switch as often as possible", with
420      * +RTS -C0
421      */
422     if (RtsFlags.ConcFlags.ctxtSwitchTicks == 0
423         && !emptyThreadQueues(cap)) {
424         cap->context_switch = 1;
425     }
426          
427 run_thread:
428
429     // CurrentTSO is the thread to run.  t might be different if we
430     // loop back to run_thread, so make sure to set CurrentTSO after
431     // that.
432     cap->r.rCurrentTSO = t;
433
434     startHeapProfTimer();
435
436     // Check for exceptions blocked on this thread
437     maybePerformBlockedException (cap, t);
438
439     // ----------------------------------------------------------------------
440     // Run the current thread 
441
442     ASSERT_FULL_CAPABILITY_INVARIANTS(cap,task);
443     ASSERT(t->cap == cap);
444     ASSERT(t->bound ? t->bound->task->cap == cap : 1);
445
446     prev_what_next = t->what_next;
447
448     errno = t->saved_errno;
449 #if mingw32_HOST_OS
450     SetLastError(t->saved_winerror);
451 #endif
452
453     cap->in_haskell = rtsTrue;
454
455     dirty_TSO(cap,t);
456
457 #if defined(THREADED_RTS)
458     if (recent_activity == ACTIVITY_DONE_GC) {
459         // ACTIVITY_DONE_GC means we turned off the timer signal to
460         // conserve power (see #1623).  Re-enable it here.
461         nat prev;
462         prev = xchg((P_)&recent_activity, ACTIVITY_YES);
463         if (prev == ACTIVITY_DONE_GC) {
464             startTimer();
465         }
466     } else if (recent_activity != ACTIVITY_INACTIVE) {
467         // If we reached ACTIVITY_INACTIVE, then don't reset it until
468         // we've done the GC.  The thread running here might just be
469         // the IO manager thread that handle_tick() woke up via
470         // wakeUpRts().
471         recent_activity = ACTIVITY_YES;
472     }
473 #endif
474
475     traceEventRunThread(cap, t);
476
477     switch (prev_what_next) {
478         
479     case ThreadKilled:
480     case ThreadComplete:
481         /* Thread already finished, return to scheduler. */
482         ret = ThreadFinished;
483         break;
484         
485     case ThreadRunGHC:
486     {
487         StgRegTable *r;
488         r = StgRun((StgFunPtr) stg_returnToStackTop, &cap->r);
489         cap = regTableToCapability(r);
490         ret = r->rRet;
491         break;
492     }
493     
494     case ThreadInterpret:
495         cap = interpretBCO(cap);
496         ret = cap->r.rRet;
497         break;
498         
499     default:
500         barf("schedule: invalid what_next field");
501     }
502
503     cap->in_haskell = rtsFalse;
504
505     // The TSO might have moved, eg. if it re-entered the RTS and a GC
506     // happened.  So find the new location:
507     t = cap->r.rCurrentTSO;
508
509     // We have run some Haskell code: there might be blackhole-blocked
510     // threads to wake up now.
511     // Lock-free test here should be ok, we're just setting a flag.
512     if ( blackhole_queue != END_TSO_QUEUE ) {
513         blackholes_need_checking = rtsTrue;
514     }
515     
516     // And save the current errno in this thread.
517     // XXX: possibly bogus for SMP because this thread might already
518     // be running again, see code below.
519     t->saved_errno = errno;
520 #if mingw32_HOST_OS
521     // Similarly for Windows error code
522     t->saved_winerror = GetLastError();
523 #endif
524
525     traceEventStopThread(cap, t, ret);
526
527 #if defined(THREADED_RTS)
528     // If ret is ThreadBlocked, and this Task is bound to the TSO that
529     // blocked, we are in limbo - the TSO is now owned by whatever it
530     // is blocked on, and may in fact already have been woken up,
531     // perhaps even on a different Capability.  It may be the case
532     // that task->cap != cap.  We better yield this Capability
533     // immediately and return to normaility.
534     if (ret == ThreadBlocked) {
535         force_yield = rtsTrue;
536         goto yield;
537     }
538 #endif
539
540     ASSERT_FULL_CAPABILITY_INVARIANTS(cap,task);
541     ASSERT(t->cap == cap);
542
543     // ----------------------------------------------------------------------
544     
545     // Costs for the scheduler are assigned to CCS_SYSTEM
546     stopHeapProfTimer();
547 #if defined(PROFILING)
548     CCCS = CCS_SYSTEM;
549 #endif
550     
551     schedulePostRunThread(cap,t);
552
553     if (ret != StackOverflow) {
554         t = threadStackUnderflow(cap,task,t);
555     }
556
557     ready_to_gc = rtsFalse;
558
559     switch (ret) {
560     case HeapOverflow:
561         ready_to_gc = scheduleHandleHeapOverflow(cap,t);
562         break;
563
564     case StackOverflow:
565         scheduleHandleStackOverflow(cap,task,t);
566         break;
567
568     case ThreadYielding:
569         if (scheduleHandleYield(cap, t, prev_what_next)) {
570             // shortcut for switching between compiler/interpreter:
571             goto run_thread; 
572         }
573         break;
574
575     case ThreadBlocked:
576         scheduleHandleThreadBlocked(t);
577         break;
578
579     case ThreadFinished:
580         if (scheduleHandleThreadFinished(cap, task, t)) return cap;
581         ASSERT_FULL_CAPABILITY_INVARIANTS(cap,task);
582         break;
583
584     default:
585       barf("schedule: invalid thread return code %d", (int)ret);
586     }
587
588     if (ready_to_gc || scheduleNeedHeapProfile(ready_to_gc)) {
589       cap = scheduleDoGC(cap,task,rtsFalse);
590     }
591   } /* end of while() */
592 }
593
594 /* ----------------------------------------------------------------------------
595  * Setting up the scheduler loop
596  * ------------------------------------------------------------------------- */
597
598 static void
599 schedulePreLoop(void)
600 {
601   // initialisation for scheduler - what cannot go into initScheduler()  
602 }
603
604 /* -----------------------------------------------------------------------------
605  * scheduleFindWork()
606  *
607  * Search for work to do, and handle messages from elsewhere.
608  * -------------------------------------------------------------------------- */
609
610 static void
611 scheduleFindWork (Capability *cap)
612 {
613     scheduleStartSignalHandlers(cap);
614
615     // Only check the black holes here if we've nothing else to do.
616     // During normal execution, the black hole list only gets checked
617     // at GC time, to avoid repeatedly traversing this possibly long
618     // list each time around the scheduler.
619     if (emptyRunQueue(cap)) { scheduleCheckBlackHoles(cap); }
620
621     scheduleProcessInbox(cap);
622
623     scheduleCheckBlockedThreads(cap);
624
625 #if defined(THREADED_RTS)
626     if (emptyRunQueue(cap)) { scheduleActivateSpark(cap); }
627 #endif
628 }
629
630 #if defined(THREADED_RTS)
631 STATIC_INLINE rtsBool
632 shouldYieldCapability (Capability *cap, Task *task)
633 {
634     // we need to yield this capability to someone else if..
635     //   - another thread is initiating a GC
636     //   - another Task is returning from a foreign call
637     //   - the thread at the head of the run queue cannot be run
638     //     by this Task (it is bound to another Task, or it is unbound
639     //     and this task it bound).
640     return (waiting_for_gc || 
641             cap->returning_tasks_hd != NULL ||
642             (!emptyRunQueue(cap) && (task->incall->tso == NULL
643                                      ? cap->run_queue_hd->bound != NULL
644                                      : cap->run_queue_hd->bound != task->incall)));
645 }
646
647 // This is the single place where a Task goes to sleep.  There are
648 // two reasons it might need to sleep:
649 //    - there are no threads to run
650 //    - we need to yield this Capability to someone else 
651 //      (see shouldYieldCapability())
652 //
653 // Careful: the scheduler loop is quite delicate.  Make sure you run
654 // the tests in testsuite/concurrent (all ways) after modifying this,
655 // and also check the benchmarks in nofib/parallel for regressions.
656
657 static void
658 scheduleYield (Capability **pcap, Task *task, rtsBool force_yield)
659 {
660     Capability *cap = *pcap;
661
662     // if we have work, and we don't need to give up the Capability, continue.
663     //
664     // The force_yield flag is used when a bound thread blocks.  This
665     // is a particularly tricky situation: the current Task does not
666     // own the TSO any more, since it is on some queue somewhere, and
667     // might be woken up or manipulated by another thread at any time.
668     // The TSO and Task might be migrated to another Capability.
669     // Certain invariants might be in doubt, such as task->bound->cap
670     // == cap.  We have to yield the current Capability immediately,
671     // no messing around.
672     //
673     if (!force_yield &&
674         !shouldYieldCapability(cap,task) && 
675         (!emptyRunQueue(cap) ||
676          !emptyInbox(cap) ||
677          blackholes_need_checking ||
678          sched_state >= SCHED_INTERRUPTING))
679         return;
680
681     // otherwise yield (sleep), and keep yielding if necessary.
682     do {
683         yieldCapability(&cap,task);
684     } 
685     while (shouldYieldCapability(cap,task));
686
687     // note there may still be no threads on the run queue at this
688     // point, the caller has to check.
689
690     *pcap = cap;
691     return;
692 }
693 #endif
694     
695 /* -----------------------------------------------------------------------------
696  * schedulePushWork()
697  *
698  * Push work to other Capabilities if we have some.
699  * -------------------------------------------------------------------------- */
700
701 static void
702 schedulePushWork(Capability *cap USED_IF_THREADS, 
703                  Task *task      USED_IF_THREADS)
704 {
705   /* following code not for PARALLEL_HASKELL. I kept the call general,
706      future GUM versions might use pushing in a distributed setup */
707 #if defined(THREADED_RTS)
708
709     Capability *free_caps[n_capabilities], *cap0;
710     nat i, n_free_caps;
711
712     // migration can be turned off with +RTS -qm
713     if (!RtsFlags.ParFlags.migrate) return;
714
715     // Check whether we have more threads on our run queue, or sparks
716     // in our pool, that we could hand to another Capability.
717     if (cap->run_queue_hd == END_TSO_QUEUE) {
718         if (sparkPoolSizeCap(cap) < 2) return;
719     } else {
720         if (cap->run_queue_hd->_link == END_TSO_QUEUE &&
721             sparkPoolSizeCap(cap) < 1) return;
722     }
723
724     // First grab as many free Capabilities as we can.
725     for (i=0, n_free_caps=0; i < n_capabilities; i++) {
726         cap0 = &capabilities[i];
727         if (cap != cap0 && tryGrabCapability(cap0,task)) {
728             if (!emptyRunQueue(cap0)
729                 || cap->returning_tasks_hd != NULL
730                 || cap->inbox != (Message*)END_TSO_QUEUE) {
731                 // it already has some work, we just grabbed it at 
732                 // the wrong moment.  Or maybe it's deadlocked!
733                 releaseCapability(cap0);
734             } else {
735                 free_caps[n_free_caps++] = cap0;
736             }
737         }
738     }
739
740     // we now have n_free_caps free capabilities stashed in
741     // free_caps[].  Share our run queue equally with them.  This is
742     // probably the simplest thing we could do; improvements we might
743     // want to do include:
744     //
745     //   - giving high priority to moving relatively new threads, on 
746     //     the gournds that they haven't had time to build up a
747     //     working set in the cache on this CPU/Capability.
748     //
749     //   - giving low priority to moving long-lived threads
750
751     if (n_free_caps > 0) {
752         StgTSO *prev, *t, *next;
753         rtsBool pushed_to_all;
754
755         debugTrace(DEBUG_sched, 
756                    "cap %d: %s and %d free capabilities, sharing...", 
757                    cap->no, 
758                    (!emptyRunQueue(cap) && cap->run_queue_hd->_link != END_TSO_QUEUE)?
759                    "excess threads on run queue":"sparks to share (>=2)",
760                    n_free_caps);
761
762         i = 0;
763         pushed_to_all = rtsFalse;
764
765         if (cap->run_queue_hd != END_TSO_QUEUE) {
766             prev = cap->run_queue_hd;
767             t = prev->_link;
768             prev->_link = END_TSO_QUEUE;
769             for (; t != END_TSO_QUEUE; t = next) {
770                 next = t->_link;
771                 t->_link = END_TSO_QUEUE;
772                 if (t->what_next == ThreadRelocated
773                     || t->bound == task->incall // don't move my bound thread
774                     || tsoLocked(t)) {  // don't move a locked thread
775                     setTSOLink(cap, prev, t);
776                     prev = t;
777                 } else if (i == n_free_caps) {
778                     pushed_to_all = rtsTrue;
779                     i = 0;
780                     // keep one for us
781                     setTSOLink(cap, prev, t);
782                     prev = t;
783                 } else {
784                     appendToRunQueue(free_caps[i],t);
785
786                     traceEventMigrateThread (cap, t, free_caps[i]->no);
787
788                     if (t->bound) { t->bound->task->cap = free_caps[i]; }
789                     t->cap = free_caps[i];
790                     i++;
791                 }
792             }
793             cap->run_queue_tl = prev;
794         }
795
796 #ifdef SPARK_PUSHING
797         /* JB I left this code in place, it would work but is not necessary */
798
799         // If there are some free capabilities that we didn't push any
800         // threads to, then try to push a spark to each one.
801         if (!pushed_to_all) {
802             StgClosure *spark;
803             // i is the next free capability to push to
804             for (; i < n_free_caps; i++) {
805                 if (emptySparkPoolCap(free_caps[i])) {
806                     spark = tryStealSpark(cap->sparks);
807                     if (spark != NULL) {
808                         debugTrace(DEBUG_sched, "pushing spark %p to capability %d", spark, free_caps[i]->no);
809
810             traceEventStealSpark(free_caps[i], t, cap->no);
811
812                         newSpark(&(free_caps[i]->r), spark);
813                     }
814                 }
815             }
816         }
817 #endif /* SPARK_PUSHING */
818
819         // release the capabilities
820         for (i = 0; i < n_free_caps; i++) {
821             task->cap = free_caps[i];
822             releaseAndWakeupCapability(free_caps[i]);
823         }
824     }
825     task->cap = cap; // reset to point to our Capability.
826
827 #endif /* THREADED_RTS */
828
829 }
830
831 /* ----------------------------------------------------------------------------
832  * Start any pending signal handlers
833  * ------------------------------------------------------------------------- */
834
835 #if defined(RTS_USER_SIGNALS) && !defined(THREADED_RTS)
836 static void
837 scheduleStartSignalHandlers(Capability *cap)
838 {
839     if (RtsFlags.MiscFlags.install_signal_handlers && signals_pending()) {
840         // safe outside the lock
841         startSignalHandlers(cap);
842     }
843 }
844 #else
845 static void
846 scheduleStartSignalHandlers(Capability *cap STG_UNUSED)
847 {
848 }
849 #endif
850
851 /* ----------------------------------------------------------------------------
852  * Check for blocked threads that can be woken up.
853  * ------------------------------------------------------------------------- */
854
855 static void
856 scheduleCheckBlockedThreads(Capability *cap USED_IF_NOT_THREADS)
857 {
858 #if !defined(THREADED_RTS)
859     //
860     // Check whether any waiting threads need to be woken up.  If the
861     // run queue is empty, and there are no other tasks running, we
862     // can wait indefinitely for something to happen.
863     //
864     if ( !emptyQueue(blocked_queue_hd) || !emptyQueue(sleeping_queue) )
865     {
866         awaitEvent( emptyRunQueue(cap) && !blackholes_need_checking );
867     }
868 #endif
869 }
870
871
872 /* ----------------------------------------------------------------------------
873  * Check for threads woken up by other Capabilities
874  * ------------------------------------------------------------------------- */
875
876 #if defined(THREADED_RTS)
877 static void
878 executeMessage (Capability *cap, Message *m)
879 {
880     const StgInfoTable *i;
881
882 loop:
883     write_barrier(); // allow m->header to be modified by another thread
884     i = m->header.info;
885     if (i == &stg_MSG_WAKEUP_info)
886     {
887         MessageWakeup *w = (MessageWakeup *)m;
888         StgTSO *tso = w->tso;
889         debugTraceCap(DEBUG_sched, cap, "message: wakeup thread %ld", 
890                       (lnat)tso->id);
891         ASSERT(tso->cap == cap);
892         ASSERT(tso->why_blocked == BlockedOnMsgWakeup);
893         ASSERT(tso->block_info.closure == (StgClosure *)m);
894         tso->why_blocked = NotBlocked;
895         appendToRunQueue(cap, tso);
896     }
897     else if (i == &stg_MSG_THROWTO_info)
898     {
899         MessageThrowTo *t = (MessageThrowTo *)m;
900         nat r;
901         const StgInfoTable *i;
902
903         i = lockClosure((StgClosure*)m);
904         if (i != &stg_MSG_THROWTO_info) {
905             unlockClosure((StgClosure*)m, i);
906             goto loop;
907         }
908
909         debugTraceCap(DEBUG_sched, cap, "message: throwTo %ld -> %ld", 
910                       (lnat)t->source->id, (lnat)t->target->id);
911
912         ASSERT(t->source->why_blocked == BlockedOnMsgThrowTo);
913         ASSERT(t->source->block_info.closure == (StgClosure *)m);
914
915         r = throwToMsg(cap, t);
916
917         switch (r) {
918         case THROWTO_SUCCESS:
919             ASSERT(t->source->sp[0] == (StgWord)&stg_block_throwto_info);
920             t->source->sp += 3;
921             unblockOne(cap, t->source);
922             // this message is done
923             unlockClosure((StgClosure*)m, &stg_IND_info);
924             break;
925         case THROWTO_BLOCKED:
926             // unlock the message
927             unlockClosure((StgClosure*)m, &stg_MSG_THROWTO_info);
928             break;
929         }
930     }
931     else if (i == &stg_IND_info)
932     {
933         // message was revoked
934         return;
935     }
936     else if (i == &stg_WHITEHOLE_info)
937     {
938         goto loop;
939     }
940     else
941     {
942         barf("executeMessage: %p", i);
943     }
944 }
945 #endif
946
947 static void
948 scheduleProcessInbox (Capability *cap USED_IF_THREADS)
949 {
950 #if defined(THREADED_RTS)
951     Message *m;
952
953     while (!emptyInbox(cap)) {
954         ACQUIRE_LOCK(&cap->lock);
955         m = cap->inbox;
956         cap->inbox = m->link;
957         RELEASE_LOCK(&cap->lock);
958         executeMessage(cap, (Message *)m);
959     }
960 #endif
961 }
962
963 /* ----------------------------------------------------------------------------
964  * Check for threads blocked on BLACKHOLEs that can be woken up
965  * ------------------------------------------------------------------------- */
966 static void
967 scheduleCheckBlackHoles (Capability *cap)
968 {
969     if ( blackholes_need_checking ) // check without the lock first
970     {
971         ACQUIRE_LOCK(&sched_mutex);
972         if ( blackholes_need_checking ) {
973             blackholes_need_checking = rtsFalse;
974             // important that we reset the flag *before* checking the
975             // blackhole queue, otherwise we could get deadlock.  This
976             // happens as follows: we wake up a thread that
977             // immediately runs on another Capability, blocks on a
978             // blackhole, and then we reset the blackholes_need_checking flag.
979             checkBlackHoles(cap);
980         }
981         RELEASE_LOCK(&sched_mutex);
982     }
983 }
984
985 /* ----------------------------------------------------------------------------
986  * Detect deadlock conditions and attempt to resolve them.
987  * ------------------------------------------------------------------------- */
988
989 static void
990 scheduleDetectDeadlock (Capability *cap, Task *task)
991 {
992     /* 
993      * Detect deadlock: when we have no threads to run, there are no
994      * threads blocked, waiting for I/O, or sleeping, and all the
995      * other tasks are waiting for work, we must have a deadlock of
996      * some description.
997      */
998     if ( emptyThreadQueues(cap) )
999     {
1000 #if defined(THREADED_RTS)
1001         /* 
1002          * In the threaded RTS, we only check for deadlock if there
1003          * has been no activity in a complete timeslice.  This means
1004          * we won't eagerly start a full GC just because we don't have
1005          * any threads to run currently.
1006          */
1007         if (recent_activity != ACTIVITY_INACTIVE) return;
1008 #endif
1009
1010         debugTrace(DEBUG_sched, "deadlocked, forcing major GC...");
1011
1012         // Garbage collection can release some new threads due to
1013         // either (a) finalizers or (b) threads resurrected because
1014         // they are unreachable and will therefore be sent an
1015         // exception.  Any threads thus released will be immediately
1016         // runnable.
1017         cap = scheduleDoGC (cap, task, rtsTrue/*force major GC*/);
1018         // when force_major == rtsTrue. scheduleDoGC sets
1019         // recent_activity to ACTIVITY_DONE_GC and turns off the timer
1020         // signal.
1021
1022         if ( !emptyRunQueue(cap) ) return;
1023
1024 #if defined(RTS_USER_SIGNALS) && !defined(THREADED_RTS)
1025         /* If we have user-installed signal handlers, then wait
1026          * for signals to arrive rather then bombing out with a
1027          * deadlock.
1028          */
1029         if ( RtsFlags.MiscFlags.install_signal_handlers && anyUserHandlers() ) {
1030             debugTrace(DEBUG_sched,
1031                        "still deadlocked, waiting for signals...");
1032
1033             awaitUserSignals();
1034
1035             if (signals_pending()) {
1036                 startSignalHandlers(cap);
1037             }
1038
1039             // either we have threads to run, or we were interrupted:
1040             ASSERT(!emptyRunQueue(cap) || sched_state >= SCHED_INTERRUPTING);
1041
1042             return;
1043         }
1044 #endif
1045
1046 #if !defined(THREADED_RTS)
1047         /* Probably a real deadlock.  Send the current main thread the
1048          * Deadlock exception.
1049          */
1050         if (task->incall->tso) {
1051             switch (task->incall->tso->why_blocked) {
1052             case BlockedOnSTM:
1053             case BlockedOnBlackHole:
1054             case BlockedOnMsgThrowTo:
1055             case BlockedOnMVar:
1056                 throwToSingleThreaded(cap, task->incall->tso, 
1057                                       (StgClosure *)nonTermination_closure);
1058                 return;
1059             default:
1060                 barf("deadlock: main thread blocked in a strange way");
1061             }
1062         }
1063         return;
1064 #endif
1065     }
1066 }
1067
1068
1069 /* ----------------------------------------------------------------------------
1070  * Send pending messages (PARALLEL_HASKELL only)
1071  * ------------------------------------------------------------------------- */
1072
1073 #if defined(PARALLEL_HASKELL)
1074 static void
1075 scheduleSendPendingMessages(void)
1076 {
1077
1078 # if defined(PAR) // global Mem.Mgmt., omit for now
1079     if (PendingFetches != END_BF_QUEUE) {
1080         processFetches();
1081     }
1082 # endif
1083     
1084     if (RtsFlags.ParFlags.BufferTime) {
1085         // if we use message buffering, we must send away all message
1086         // packets which have become too old...
1087         sendOldBuffers(); 
1088     }
1089 }
1090 #endif
1091
1092 /* ----------------------------------------------------------------------------
1093  * Activate spark threads (PARALLEL_HASKELL and THREADED_RTS)
1094  * ------------------------------------------------------------------------- */
1095
1096 #if defined(THREADED_RTS)
1097 static void
1098 scheduleActivateSpark(Capability *cap)
1099 {
1100     if (anySparks())
1101     {
1102         createSparkThread(cap);
1103         debugTrace(DEBUG_sched, "creating a spark thread");
1104     }
1105 }
1106 #endif // PARALLEL_HASKELL || THREADED_RTS
1107
1108 /* ----------------------------------------------------------------------------
1109  * After running a thread...
1110  * ------------------------------------------------------------------------- */
1111
1112 static void
1113 schedulePostRunThread (Capability *cap, StgTSO *t)
1114 {
1115     // We have to be able to catch transactions that are in an
1116     // infinite loop as a result of seeing an inconsistent view of
1117     // memory, e.g. 
1118     //
1119     //   atomically $ do
1120     //       [a,b] <- mapM readTVar [ta,tb]
1121     //       when (a == b) loop
1122     //
1123     // and a is never equal to b given a consistent view of memory.
1124     //
1125     if (t -> trec != NO_TREC && t -> why_blocked == NotBlocked) {
1126         if (!stmValidateNestOfTransactions (t -> trec)) {
1127             debugTrace(DEBUG_sched | DEBUG_stm,
1128                        "trec %p found wasting its time", t);
1129             
1130             // strip the stack back to the
1131             // ATOMICALLY_FRAME, aborting the (nested)
1132             // transaction, and saving the stack of any
1133             // partially-evaluated thunks on the heap.
1134             throwToSingleThreaded_(cap, t, NULL, rtsTrue);
1135             
1136 //            ASSERT(get_itbl((StgClosure *)t->sp)->type == ATOMICALLY_FRAME);
1137         }
1138     }
1139
1140   /* some statistics gathering in the parallel case */
1141 }
1142
1143 /* -----------------------------------------------------------------------------
1144  * Handle a thread that returned to the scheduler with ThreadHeepOverflow
1145  * -------------------------------------------------------------------------- */
1146
1147 static rtsBool
1148 scheduleHandleHeapOverflow( Capability *cap, StgTSO *t )
1149 {
1150     // did the task ask for a large block?
1151     if (cap->r.rHpAlloc > BLOCK_SIZE) {
1152         // if so, get one and push it on the front of the nursery.
1153         bdescr *bd;
1154         lnat blocks;
1155         
1156         blocks = (lnat)BLOCK_ROUND_UP(cap->r.rHpAlloc) / BLOCK_SIZE;
1157         
1158         debugTrace(DEBUG_sched,
1159                    "--<< thread %ld (%s) stopped: requesting a large block (size %ld)\n", 
1160                    (long)t->id, what_next_strs[t->what_next], blocks);
1161     
1162         // don't do this if the nursery is (nearly) full, we'll GC first.
1163         if (cap->r.rCurrentNursery->link != NULL ||
1164             cap->r.rNursery->n_blocks == 1) {  // paranoia to prevent infinite loop
1165                                                // if the nursery has only one block.
1166             
1167             ACQUIRE_SM_LOCK
1168             bd = allocGroup( blocks );
1169             RELEASE_SM_LOCK
1170             cap->r.rNursery->n_blocks += blocks;
1171             
1172             // link the new group into the list
1173             bd->link = cap->r.rCurrentNursery;
1174             bd->u.back = cap->r.rCurrentNursery->u.back;
1175             if (cap->r.rCurrentNursery->u.back != NULL) {
1176                 cap->r.rCurrentNursery->u.back->link = bd;
1177             } else {
1178                 cap->r.rNursery->blocks = bd;
1179             }             
1180             cap->r.rCurrentNursery->u.back = bd;
1181             
1182             // initialise it as a nursery block.  We initialise the
1183             // step, gen_no, and flags field of *every* sub-block in
1184             // this large block, because this is easier than making
1185             // sure that we always find the block head of a large
1186             // block whenever we call Bdescr() (eg. evacuate() and
1187             // isAlive() in the GC would both have to do this, at
1188             // least).
1189             { 
1190                 bdescr *x;
1191                 for (x = bd; x < bd + blocks; x++) {
1192                     initBdescr(x,g0,g0);
1193                     x->free = x->start;
1194                     x->flags = 0;
1195                 }
1196             }
1197             
1198             // This assert can be a killer if the app is doing lots
1199             // of large block allocations.
1200             IF_DEBUG(sanity, checkNurserySanity(cap->r.rNursery));
1201             
1202             // now update the nursery to point to the new block
1203             cap->r.rCurrentNursery = bd;
1204             
1205             // we might be unlucky and have another thread get on the
1206             // run queue before us and steal the large block, but in that
1207             // case the thread will just end up requesting another large
1208             // block.
1209             pushOnRunQueue(cap,t);
1210             return rtsFalse;  /* not actually GC'ing */
1211         }
1212     }
1213     
1214     if (cap->r.rHpLim == NULL || cap->context_switch) {
1215         // Sometimes we miss a context switch, e.g. when calling
1216         // primitives in a tight loop, MAYBE_GC() doesn't check the
1217         // context switch flag, and we end up waiting for a GC.
1218         // See #1984, and concurrent/should_run/1984
1219         cap->context_switch = 0;
1220         addToRunQueue(cap,t);
1221     } else {
1222         pushOnRunQueue(cap,t);
1223     }
1224     return rtsTrue;
1225     /* actual GC is done at the end of the while loop in schedule() */
1226 }
1227
1228 /* -----------------------------------------------------------------------------
1229  * Handle a thread that returned to the scheduler with ThreadStackOverflow
1230  * -------------------------------------------------------------------------- */
1231
1232 static void
1233 scheduleHandleStackOverflow (Capability *cap, Task *task, StgTSO *t)
1234 {
1235     /* just adjust the stack for this thread, then pop it back
1236      * on the run queue.
1237      */
1238     { 
1239         /* enlarge the stack */
1240         StgTSO *new_t = threadStackOverflow(cap, t);
1241         
1242         /* The TSO attached to this Task may have moved, so update the
1243          * pointer to it.
1244          */
1245         if (task->incall->tso == t) {
1246             task->incall->tso = new_t;
1247         }
1248         pushOnRunQueue(cap,new_t);
1249     }
1250 }
1251
1252 /* -----------------------------------------------------------------------------
1253  * Handle a thread that returned to the scheduler with ThreadYielding
1254  * -------------------------------------------------------------------------- */
1255
1256 static rtsBool
1257 scheduleHandleYield( Capability *cap, StgTSO *t, nat prev_what_next )
1258 {
1259     /* put the thread back on the run queue.  Then, if we're ready to
1260      * GC, check whether this is the last task to stop.  If so, wake
1261      * up the GC thread.  getThread will block during a GC until the
1262      * GC is finished.
1263      */
1264
1265     ASSERT(t->_link == END_TSO_QUEUE);
1266     
1267     // Shortcut if we're just switching evaluators: don't bother
1268     // doing stack squeezing (which can be expensive), just run the
1269     // thread.
1270     if (cap->context_switch == 0 && t->what_next != prev_what_next) {
1271         debugTrace(DEBUG_sched,
1272                    "--<< thread %ld (%s) stopped to switch evaluators", 
1273                    (long)t->id, what_next_strs[t->what_next]);
1274         return rtsTrue;
1275     }
1276
1277     // Reset the context switch flag.  We don't do this just before
1278     // running the thread, because that would mean we would lose ticks
1279     // during GC, which can lead to unfair scheduling (a thread hogs
1280     // the CPU because the tick always arrives during GC).  This way
1281     // penalises threads that do a lot of allocation, but that seems
1282     // better than the alternative.
1283     cap->context_switch = 0;
1284     
1285     IF_DEBUG(sanity,
1286              //debugBelch("&& Doing sanity check on yielding TSO %ld.", t->id);
1287              checkTSO(t));
1288
1289     addToRunQueue(cap,t);
1290
1291     return rtsFalse;
1292 }
1293
1294 /* -----------------------------------------------------------------------------
1295  * Handle a thread that returned to the scheduler with ThreadBlocked
1296  * -------------------------------------------------------------------------- */
1297
1298 static void
1299 scheduleHandleThreadBlocked( StgTSO *t
1300 #if !defined(DEBUG)
1301     STG_UNUSED
1302 #endif
1303     )
1304 {
1305
1306       // We don't need to do anything.  The thread is blocked, and it
1307       // has tidied up its stack and placed itself on whatever queue
1308       // it needs to be on.
1309
1310     // ASSERT(t->why_blocked != NotBlocked);
1311     // Not true: for example,
1312     //    - in THREADED_RTS, the thread may already have been woken
1313     //      up by another Capability.  This actually happens: try
1314     //      conc023 +RTS -N2.
1315     //    - the thread may have woken itself up already, because
1316     //      threadPaused() might have raised a blocked throwTo
1317     //      exception, see maybePerformBlockedException().
1318
1319 #ifdef DEBUG
1320     traceThreadStatus(DEBUG_sched, t);
1321 #endif
1322 }
1323
1324 /* -----------------------------------------------------------------------------
1325  * Handle a thread that returned to the scheduler with ThreadFinished
1326  * -------------------------------------------------------------------------- */
1327
1328 static rtsBool
1329 scheduleHandleThreadFinished (Capability *cap STG_UNUSED, Task *task, StgTSO *t)
1330 {
1331     /* Need to check whether this was a main thread, and if so,
1332      * return with the return value.
1333      *
1334      * We also end up here if the thread kills itself with an
1335      * uncaught exception, see Exception.cmm.
1336      */
1337
1338     // blocked exceptions can now complete, even if the thread was in
1339     // blocked mode (see #2910).
1340     awakenBlockedExceptionQueue (cap, t);
1341
1342       //
1343       // Check whether the thread that just completed was a bound
1344       // thread, and if so return with the result.  
1345       //
1346       // There is an assumption here that all thread completion goes
1347       // through this point; we need to make sure that if a thread
1348       // ends up in the ThreadKilled state, that it stays on the run
1349       // queue so it can be dealt with here.
1350       //
1351
1352       if (t->bound) {
1353
1354           if (t->bound != task->incall) {
1355 #if !defined(THREADED_RTS)
1356               // Must be a bound thread that is not the topmost one.  Leave
1357               // it on the run queue until the stack has unwound to the
1358               // point where we can deal with this.  Leaving it on the run
1359               // queue also ensures that the garbage collector knows about
1360               // this thread and its return value (it gets dropped from the
1361               // step->threads list so there's no other way to find it).
1362               appendToRunQueue(cap,t);
1363               return rtsFalse;
1364 #else
1365               // this cannot happen in the threaded RTS, because a
1366               // bound thread can only be run by the appropriate Task.
1367               barf("finished bound thread that isn't mine");
1368 #endif
1369           }
1370
1371           ASSERT(task->incall->tso == t);
1372
1373           if (t->what_next == ThreadComplete) {
1374               if (task->ret) {
1375                   // NOTE: return val is tso->sp[1] (see StgStartup.hc)
1376                   *(task->ret) = (StgClosure *)task->incall->tso->sp[1]; 
1377               }
1378               task->stat = Success;
1379           } else {
1380               if (task->ret) {
1381                   *(task->ret) = NULL;
1382               }
1383               if (sched_state >= SCHED_INTERRUPTING) {
1384                   if (heap_overflow) {
1385                       task->stat = HeapExhausted;
1386                   } else {
1387                       task->stat = Interrupted;
1388                   }
1389               } else {
1390                   task->stat = Killed;
1391               }
1392           }
1393 #ifdef DEBUG
1394           removeThreadLabel((StgWord)task->incall->tso->id);
1395 #endif
1396
1397           // We no longer consider this thread and task to be bound to
1398           // each other.  The TSO lives on until it is GC'd, but the
1399           // task is about to be released by the caller, and we don't
1400           // want anyone following the pointer from the TSO to the
1401           // defunct task (which might have already been
1402           // re-used). This was a real bug: the GC updated
1403           // tso->bound->tso which lead to a deadlock.
1404           t->bound = NULL;
1405           task->incall->tso = NULL;
1406
1407           return rtsTrue; // tells schedule() to return
1408       }
1409
1410       return rtsFalse;
1411 }
1412
1413 /* -----------------------------------------------------------------------------
1414  * Perform a heap census
1415  * -------------------------------------------------------------------------- */
1416
1417 static rtsBool
1418 scheduleNeedHeapProfile( rtsBool ready_to_gc STG_UNUSED )
1419 {
1420     // When we have +RTS -i0 and we're heap profiling, do a census at
1421     // every GC.  This lets us get repeatable runs for debugging.
1422     if (performHeapProfile ||
1423         (RtsFlags.ProfFlags.profileInterval==0 &&
1424          RtsFlags.ProfFlags.doHeapProfile && ready_to_gc)) {
1425         return rtsTrue;
1426     } else {
1427         return rtsFalse;
1428     }
1429 }
1430
1431 /* -----------------------------------------------------------------------------
1432  * Perform a garbage collection if necessary
1433  * -------------------------------------------------------------------------- */
1434
1435 static Capability *
1436 scheduleDoGC (Capability *cap, Task *task USED_IF_THREADS, rtsBool force_major)
1437 {
1438     rtsBool heap_census;
1439 #ifdef THREADED_RTS
1440     /* extern static volatile StgWord waiting_for_gc; 
1441        lives inside capability.c */
1442     rtsBool gc_type, prev_pending_gc;
1443     nat i;
1444 #endif
1445
1446     if (sched_state == SCHED_SHUTTING_DOWN) {
1447         // The final GC has already been done, and the system is
1448         // shutting down.  We'll probably deadlock if we try to GC
1449         // now.
1450         return cap;
1451     }
1452
1453 #ifdef THREADED_RTS
1454     if (sched_state < SCHED_INTERRUPTING
1455         && RtsFlags.ParFlags.parGcEnabled
1456         && N >= RtsFlags.ParFlags.parGcGen
1457         && ! oldest_gen->mark)
1458     {
1459         gc_type = PENDING_GC_PAR;
1460     } else {
1461         gc_type = PENDING_GC_SEQ;
1462     }
1463
1464     // In order to GC, there must be no threads running Haskell code.
1465     // Therefore, the GC thread needs to hold *all* the capabilities,
1466     // and release them after the GC has completed.  
1467     //
1468     // This seems to be the simplest way: previous attempts involved
1469     // making all the threads with capabilities give up their
1470     // capabilities and sleep except for the *last* one, which
1471     // actually did the GC.  But it's quite hard to arrange for all
1472     // the other tasks to sleep and stay asleep.
1473     //
1474
1475     /*  Other capabilities are prevented from running yet more Haskell
1476         threads if waiting_for_gc is set. Tested inside
1477         yieldCapability() and releaseCapability() in Capability.c */
1478
1479     prev_pending_gc = cas(&waiting_for_gc, 0, gc_type);
1480     if (prev_pending_gc) {
1481         do {
1482             debugTrace(DEBUG_sched, "someone else is trying to GC (%d)...", 
1483                        prev_pending_gc);
1484             ASSERT(cap);
1485             yieldCapability(&cap,task);
1486         } while (waiting_for_gc);
1487         return cap;  // NOTE: task->cap might have changed here
1488     }
1489
1490     setContextSwitches();
1491
1492     // The final shutdown GC is always single-threaded, because it's
1493     // possible that some of the Capabilities have no worker threads.
1494     
1495     if (gc_type == PENDING_GC_SEQ)
1496     {
1497         traceEventRequestSeqGc(cap);
1498     }
1499     else
1500     {
1501         traceEventRequestParGc(cap);
1502         debugTrace(DEBUG_sched, "ready_to_gc, grabbing GC threads");
1503     }
1504
1505     // do this while the other Capabilities stop:
1506     if (cap) scheduleCheckBlackHoles(cap);
1507
1508     if (gc_type == PENDING_GC_SEQ)
1509     {
1510         // single-threaded GC: grab all the capabilities
1511         for (i=0; i < n_capabilities; i++) {
1512             debugTrace(DEBUG_sched, "ready_to_gc, grabbing all the capabilies (%d/%d)", i, n_capabilities);
1513             if (cap != &capabilities[i]) {
1514                 Capability *pcap = &capabilities[i];
1515                 // we better hope this task doesn't get migrated to
1516                 // another Capability while we're waiting for this one.
1517                 // It won't, because load balancing happens while we have
1518                 // all the Capabilities, but even so it's a slightly
1519                 // unsavoury invariant.
1520                 task->cap = pcap;
1521                 waitForReturnCapability(&pcap, task);
1522                 if (pcap != &capabilities[i]) {
1523                     barf("scheduleDoGC: got the wrong capability");
1524                 }
1525             }
1526         }
1527     }
1528     else
1529     {
1530         // multi-threaded GC: make sure all the Capabilities donate one
1531         // GC thread each.
1532         waitForGcThreads(cap);
1533     }
1534
1535 #else /* !THREADED_RTS */
1536
1537     // do this while the other Capabilities stop:
1538     if (cap) scheduleCheckBlackHoles(cap);
1539
1540 #endif
1541
1542     IF_DEBUG(scheduler, printAllThreads());
1543
1544 delete_threads_and_gc:
1545     /*
1546      * We now have all the capabilities; if we're in an interrupting
1547      * state, then we should take the opportunity to delete all the
1548      * threads in the system.
1549      */
1550     if (sched_state == SCHED_INTERRUPTING) {
1551         deleteAllThreads(cap);
1552         sched_state = SCHED_SHUTTING_DOWN;
1553     }
1554     
1555     heap_census = scheduleNeedHeapProfile(rtsTrue);
1556
1557     traceEventGcStart(cap);
1558 #if defined(THREADED_RTS)
1559     // reset waiting_for_gc *before* GC, so that when the GC threads
1560     // emerge they don't immediately re-enter the GC.
1561     waiting_for_gc = 0;
1562     GarbageCollect(force_major || heap_census, gc_type, cap);
1563 #else
1564     GarbageCollect(force_major || heap_census, 0, cap);
1565 #endif
1566     traceEventGcEnd(cap);
1567
1568     if (recent_activity == ACTIVITY_INACTIVE && force_major)
1569     {
1570         // We are doing a GC because the system has been idle for a
1571         // timeslice and we need to check for deadlock.  Record the
1572         // fact that we've done a GC and turn off the timer signal;
1573         // it will get re-enabled if we run any threads after the GC.
1574         recent_activity = ACTIVITY_DONE_GC;
1575         stopTimer();
1576     }
1577     else
1578     {
1579         // the GC might have taken long enough for the timer to set
1580         // recent_activity = ACTIVITY_INACTIVE, but we aren't
1581         // necessarily deadlocked:
1582         recent_activity = ACTIVITY_YES;
1583     }
1584
1585 #if defined(THREADED_RTS)
1586     if (gc_type == PENDING_GC_PAR)
1587     {
1588         releaseGCThreads(cap);
1589     }
1590 #endif
1591
1592     if (heap_census) {
1593         debugTrace(DEBUG_sched, "performing heap census");
1594         heapCensus();
1595         performHeapProfile = rtsFalse;
1596     }
1597
1598     if (heap_overflow && sched_state < SCHED_INTERRUPTING) {
1599         // GC set the heap_overflow flag, so we should proceed with
1600         // an orderly shutdown now.  Ultimately we want the main
1601         // thread to return to its caller with HeapExhausted, at which
1602         // point the caller should call hs_exit().  The first step is
1603         // to delete all the threads.
1604         //
1605         // Another way to do this would be to raise an exception in
1606         // the main thread, which we really should do because it gives
1607         // the program a chance to clean up.  But how do we find the
1608         // main thread?  It should presumably be the same one that
1609         // gets ^C exceptions, but that's all done on the Haskell side
1610         // (GHC.TopHandler).
1611         sched_state = SCHED_INTERRUPTING;
1612         goto delete_threads_and_gc;
1613     }
1614
1615 #ifdef SPARKBALANCE
1616     /* JB 
1617        Once we are all together... this would be the place to balance all
1618        spark pools. No concurrent stealing or adding of new sparks can
1619        occur. Should be defined in Sparks.c. */
1620     balanceSparkPoolsCaps(n_capabilities, capabilities);
1621 #endif
1622
1623 #if defined(THREADED_RTS)
1624     if (gc_type == PENDING_GC_SEQ) {
1625         // release our stash of capabilities.
1626         for (i = 0; i < n_capabilities; i++) {
1627             if (cap != &capabilities[i]) {
1628                 task->cap = &capabilities[i];
1629                 releaseCapability(&capabilities[i]);
1630             }
1631         }
1632     }
1633     if (cap) {
1634         task->cap = cap;
1635     } else {
1636         task->cap = NULL;
1637     }
1638 #endif
1639
1640     return cap;
1641 }
1642
1643 /* ---------------------------------------------------------------------------
1644  * Singleton fork(). Do not copy any running threads.
1645  * ------------------------------------------------------------------------- */
1646
1647 pid_t
1648 forkProcess(HsStablePtr *entry
1649 #ifndef FORKPROCESS_PRIMOP_SUPPORTED
1650             STG_UNUSED
1651 #endif
1652            )
1653 {
1654 #ifdef FORKPROCESS_PRIMOP_SUPPORTED
1655     pid_t pid;
1656     StgTSO* t,*next;
1657     Capability *cap;
1658     nat g;
1659     
1660 #if defined(THREADED_RTS)
1661     if (RtsFlags.ParFlags.nNodes > 1) {
1662         errorBelch("forking not supported with +RTS -N<n> greater than 1");
1663         stg_exit(EXIT_FAILURE);
1664     }
1665 #endif
1666
1667     debugTrace(DEBUG_sched, "forking!");
1668     
1669     // ToDo: for SMP, we should probably acquire *all* the capabilities
1670     cap = rts_lock();
1671     
1672     // no funny business: hold locks while we fork, otherwise if some
1673     // other thread is holding a lock when the fork happens, the data
1674     // structure protected by the lock will forever be in an
1675     // inconsistent state in the child.  See also #1391.
1676     ACQUIRE_LOCK(&sched_mutex);
1677     ACQUIRE_LOCK(&cap->lock);
1678     ACQUIRE_LOCK(&cap->running_task->lock);
1679
1680     pid = fork();
1681     
1682     if (pid) { // parent
1683         
1684         RELEASE_LOCK(&sched_mutex);
1685         RELEASE_LOCK(&cap->lock);
1686         RELEASE_LOCK(&cap->running_task->lock);
1687
1688         // just return the pid
1689         rts_unlock(cap);
1690         return pid;
1691         
1692     } else { // child
1693         
1694 #if defined(THREADED_RTS)
1695         initMutex(&sched_mutex);
1696         initMutex(&cap->lock);
1697         initMutex(&cap->running_task->lock);
1698 #endif
1699
1700         // Now, all OS threads except the thread that forked are
1701         // stopped.  We need to stop all Haskell threads, including
1702         // those involved in foreign calls.  Also we need to delete
1703         // all Tasks, because they correspond to OS threads that are
1704         // now gone.
1705
1706         for (g = 0; g < RtsFlags.GcFlags.generations; g++) {
1707           for (t = generations[g].threads; t != END_TSO_QUEUE; t = next) {
1708             if (t->what_next == ThreadRelocated) {
1709                 next = t->_link;
1710             } else {
1711                 next = t->global_link;
1712                 // don't allow threads to catch the ThreadKilled
1713                 // exception, but we do want to raiseAsync() because these
1714                 // threads may be evaluating thunks that we need later.
1715                 deleteThread_(cap,t);
1716             }
1717           }
1718         }
1719         
1720         // Empty the run queue.  It seems tempting to let all the
1721         // killed threads stay on the run queue as zombies to be
1722         // cleaned up later, but some of them correspond to bound
1723         // threads for which the corresponding Task does not exist.
1724         cap->run_queue_hd = END_TSO_QUEUE;
1725         cap->run_queue_tl = END_TSO_QUEUE;
1726
1727         // Any suspended C-calling Tasks are no more, their OS threads
1728         // don't exist now:
1729         cap->suspended_ccalls = NULL;
1730
1731         // Empty the threads lists.  Otherwise, the garbage
1732         // collector may attempt to resurrect some of these threads.
1733         for (g = 0; g < RtsFlags.GcFlags.generations; g++) {
1734             generations[g].threads = END_TSO_QUEUE;
1735         }
1736
1737         discardTasksExcept(cap->running_task);
1738
1739 #if defined(THREADED_RTS)
1740         // Wipe our spare workers list, they no longer exist.  New
1741         // workers will be created if necessary.
1742         cap->spare_workers = NULL;
1743         cap->returning_tasks_hd = NULL;
1744         cap->returning_tasks_tl = NULL;
1745 #endif
1746
1747         // On Unix, all timers are reset in the child, so we need to start
1748         // the timer again.
1749         initTimer();
1750         startTimer();
1751
1752 #if defined(THREADED_RTS)
1753         cap = ioManagerStartCap(cap);
1754 #endif
1755
1756         cap = rts_evalStableIO(cap, entry, NULL);  // run the action
1757         rts_checkSchedStatus("forkProcess",cap);
1758         
1759         rts_unlock(cap);
1760         hs_exit();                      // clean up and exit
1761         stg_exit(EXIT_SUCCESS);
1762     }
1763 #else /* !FORKPROCESS_PRIMOP_SUPPORTED */
1764     barf("forkProcess#: primop not supported on this platform, sorry!\n");
1765 #endif
1766 }
1767
1768 /* ---------------------------------------------------------------------------
1769  * Delete all the threads in the system
1770  * ------------------------------------------------------------------------- */
1771    
1772 static void
1773 deleteAllThreads ( Capability *cap )
1774 {
1775     // NOTE: only safe to call if we own all capabilities.
1776
1777     StgTSO* t, *next;
1778     nat g;
1779
1780     debugTrace(DEBUG_sched,"deleting all threads");
1781     for (g = 0; g < RtsFlags.GcFlags.generations; g++) {
1782         for (t = generations[g].threads; t != END_TSO_QUEUE; t = next) {
1783             if (t->what_next == ThreadRelocated) {
1784                 next = t->_link;
1785             } else {
1786                 next = t->global_link;
1787                 deleteThread(cap,t);
1788             }
1789         }
1790     }
1791
1792     // The run queue now contains a bunch of ThreadKilled threads.  We
1793     // must not throw these away: the main thread(s) will be in there
1794     // somewhere, and the main scheduler loop has to deal with it.
1795     // Also, the run queue is the only thing keeping these threads from
1796     // being GC'd, and we don't want the "main thread has been GC'd" panic.
1797
1798 #if !defined(THREADED_RTS)
1799     ASSERT(blocked_queue_hd == END_TSO_QUEUE);
1800     ASSERT(sleeping_queue == END_TSO_QUEUE);
1801 #endif
1802 }
1803
1804 /* -----------------------------------------------------------------------------
1805    Managing the suspended_ccalls list.
1806    Locks required: sched_mutex
1807    -------------------------------------------------------------------------- */
1808
1809 STATIC_INLINE void
1810 suspendTask (Capability *cap, Task *task)
1811 {
1812     InCall *incall;
1813     
1814     incall = task->incall;
1815     ASSERT(incall->next == NULL && incall->prev == NULL);
1816     incall->next = cap->suspended_ccalls;
1817     incall->prev = NULL;
1818     if (cap->suspended_ccalls) {
1819         cap->suspended_ccalls->prev = incall;
1820     }
1821     cap->suspended_ccalls = incall;
1822 }
1823
1824 STATIC_INLINE void
1825 recoverSuspendedTask (Capability *cap, Task *task)
1826 {
1827     InCall *incall;
1828
1829     incall = task->incall;
1830     if (incall->prev) {
1831         incall->prev->next = incall->next;
1832     } else {
1833         ASSERT(cap->suspended_ccalls == incall);
1834         cap->suspended_ccalls = incall->next;
1835     }
1836     if (incall->next) {
1837         incall->next->prev = incall->prev;
1838     }
1839     incall->next = incall->prev = NULL;
1840 }
1841
1842 /* ---------------------------------------------------------------------------
1843  * Suspending & resuming Haskell threads.
1844  * 
1845  * When making a "safe" call to C (aka _ccall_GC), the task gives back
1846  * its capability before calling the C function.  This allows another
1847  * task to pick up the capability and carry on running Haskell
1848  * threads.  It also means that if the C call blocks, it won't lock
1849  * the whole system.
1850  *
1851  * The Haskell thread making the C call is put to sleep for the
1852  * duration of the call, on the susepended_ccalling_threads queue.  We
1853  * give out a token to the task, which it can use to resume the thread
1854  * on return from the C function.
1855  * ------------------------------------------------------------------------- */
1856    
1857 void *
1858 suspendThread (StgRegTable *reg)
1859 {
1860   Capability *cap;
1861   int saved_errno;
1862   StgTSO *tso;
1863   Task *task;
1864 #if mingw32_HOST_OS
1865   StgWord32 saved_winerror;
1866 #endif
1867
1868   saved_errno = errno;
1869 #if mingw32_HOST_OS
1870   saved_winerror = GetLastError();
1871 #endif
1872
1873   /* assume that *reg is a pointer to the StgRegTable part of a Capability.
1874    */
1875   cap = regTableToCapability(reg);
1876
1877   task = cap->running_task;
1878   tso = cap->r.rCurrentTSO;
1879
1880   traceEventStopThread(cap, tso, THREAD_SUSPENDED_FOREIGN_CALL);
1881
1882   // XXX this might not be necessary --SDM
1883   tso->what_next = ThreadRunGHC;
1884
1885   threadPaused(cap,tso);
1886
1887   if ((tso->flags & TSO_BLOCKEX) == 0)  {
1888       tso->why_blocked = BlockedOnCCall;
1889       tso->flags |= TSO_BLOCKEX;
1890       tso->flags &= ~TSO_INTERRUPTIBLE;
1891   } else {
1892       tso->why_blocked = BlockedOnCCall_NoUnblockExc;
1893   }
1894
1895   // Hand back capability
1896   task->incall->suspended_tso = tso;
1897   task->incall->suspended_cap = cap;
1898
1899   ACQUIRE_LOCK(&cap->lock);
1900
1901   suspendTask(cap,task);
1902   cap->in_haskell = rtsFalse;
1903   releaseCapability_(cap,rtsFalse);
1904   
1905   RELEASE_LOCK(&cap->lock);
1906
1907   errno = saved_errno;
1908 #if mingw32_HOST_OS
1909   SetLastError(saved_winerror);
1910 #endif
1911   return task;
1912 }
1913
1914 StgRegTable *
1915 resumeThread (void *task_)
1916 {
1917     StgTSO *tso;
1918     InCall *incall;
1919     Capability *cap;
1920     Task *task = task_;
1921     int saved_errno;
1922 #if mingw32_HOST_OS
1923     StgWord32 saved_winerror;
1924 #endif
1925
1926     saved_errno = errno;
1927 #if mingw32_HOST_OS
1928     saved_winerror = GetLastError();
1929 #endif
1930
1931     incall = task->incall;
1932     cap = incall->suspended_cap;
1933     task->cap = cap;
1934
1935     // Wait for permission to re-enter the RTS with the result.
1936     waitForReturnCapability(&cap,task);
1937     // we might be on a different capability now... but if so, our
1938     // entry on the suspended_ccalls list will also have been
1939     // migrated.
1940
1941     // Remove the thread from the suspended list
1942     recoverSuspendedTask(cap,task);
1943
1944     tso = incall->suspended_tso;
1945     incall->suspended_tso = NULL;
1946     incall->suspended_cap = NULL;
1947     tso->_link = END_TSO_QUEUE; // no write barrier reqd
1948
1949     traceEventRunThread(cap, tso);
1950     
1951     if (tso->why_blocked == BlockedOnCCall) {
1952         // avoid locking the TSO if we don't have to
1953         if (tso->blocked_exceptions != END_BLOCKED_EXCEPTIONS_QUEUE) {
1954             awakenBlockedExceptionQueue(cap,tso);
1955         }
1956         tso->flags &= ~(TSO_BLOCKEX | TSO_INTERRUPTIBLE);
1957     }
1958     
1959     /* Reset blocking status */
1960     tso->why_blocked  = NotBlocked;
1961     
1962     cap->r.rCurrentTSO = tso;
1963     cap->in_haskell = rtsTrue;
1964     errno = saved_errno;
1965 #if mingw32_HOST_OS
1966     SetLastError(saved_winerror);
1967 #endif
1968
1969     /* We might have GC'd, mark the TSO dirty again */
1970     dirty_TSO(cap,tso);
1971
1972     IF_DEBUG(sanity, checkTSO(tso));
1973
1974     return &cap->r;
1975 }
1976
1977 /* ---------------------------------------------------------------------------
1978  * scheduleThread()
1979  *
1980  * scheduleThread puts a thread on the end  of the runnable queue.
1981  * This will usually be done immediately after a thread is created.
1982  * The caller of scheduleThread must create the thread using e.g.
1983  * createThread and push an appropriate closure
1984  * on this thread's stack before the scheduler is invoked.
1985  * ------------------------------------------------------------------------ */
1986
1987 void
1988 scheduleThread(Capability *cap, StgTSO *tso)
1989 {
1990     // The thread goes at the *end* of the run-queue, to avoid possible
1991     // starvation of any threads already on the queue.
1992     appendToRunQueue(cap,tso);
1993 }
1994
1995 void
1996 scheduleThreadOn(Capability *cap, StgWord cpu USED_IF_THREADS, StgTSO *tso)
1997 {
1998 #if defined(THREADED_RTS)
1999     tso->flags |= TSO_LOCKED; // we requested explicit affinity; don't
2000                               // move this thread from now on.
2001     cpu %= RtsFlags.ParFlags.nNodes;
2002     if (cpu == cap->no) {
2003         appendToRunQueue(cap,tso);
2004     } else {
2005         traceEventMigrateThread (cap, tso, capabilities[cpu].no);
2006         wakeupThreadOnCapability(cap, &capabilities[cpu], tso);
2007     }
2008 #else
2009     appendToRunQueue(cap,tso);
2010 #endif
2011 }
2012
2013 Capability *
2014 scheduleWaitThread (StgTSO* tso, /*[out]*/HaskellObj* ret, Capability *cap)
2015 {
2016     Task *task;
2017     StgThreadID id;
2018
2019     // We already created/initialised the Task
2020     task = cap->running_task;
2021
2022     // This TSO is now a bound thread; make the Task and TSO
2023     // point to each other.
2024     tso->bound = task->incall;
2025     tso->cap = cap;
2026
2027     task->incall->tso = tso;
2028     task->ret = ret;
2029     task->stat = NoStatus;
2030
2031     appendToRunQueue(cap,tso);
2032
2033     id = tso->id;
2034     debugTrace(DEBUG_sched, "new bound thread (%lu)", (unsigned long)id);
2035
2036     cap = schedule(cap,task);
2037
2038     ASSERT(task->stat != NoStatus);
2039     ASSERT_FULL_CAPABILITY_INVARIANTS(cap,task);
2040
2041     debugTrace(DEBUG_sched, "bound thread (%lu) finished", (unsigned long)id);
2042     return cap;
2043 }
2044
2045 /* ----------------------------------------------------------------------------
2046  * Starting Tasks
2047  * ------------------------------------------------------------------------- */
2048
2049 #if defined(THREADED_RTS)
2050 void scheduleWorker (Capability *cap, Task *task)
2051 {
2052     // schedule() runs without a lock.
2053     cap = schedule(cap,task);
2054
2055     // On exit from schedule(), we have a Capability, but possibly not
2056     // the same one we started with.
2057
2058     // During shutdown, the requirement is that after all the
2059     // Capabilities are shut down, all workers that are shutting down
2060     // have finished workerTaskStop().  This is why we hold on to
2061     // cap->lock until we've finished workerTaskStop() below.
2062     //
2063     // There may be workers still involved in foreign calls; those
2064     // will just block in waitForReturnCapability() because the
2065     // Capability has been shut down.
2066     //
2067     ACQUIRE_LOCK(&cap->lock);
2068     releaseCapability_(cap,rtsFalse);
2069     workerTaskStop(task);
2070     RELEASE_LOCK(&cap->lock);
2071 }
2072 #endif
2073
2074 /* ---------------------------------------------------------------------------
2075  * initScheduler()
2076  *
2077  * Initialise the scheduler.  This resets all the queues - if the
2078  * queues contained any threads, they'll be garbage collected at the
2079  * next pass.
2080  *
2081  * ------------------------------------------------------------------------ */
2082
2083 void 
2084 initScheduler(void)
2085 {
2086 #if !defined(THREADED_RTS)
2087   blocked_queue_hd  = END_TSO_QUEUE;
2088   blocked_queue_tl  = END_TSO_QUEUE;
2089   sleeping_queue    = END_TSO_QUEUE;
2090 #endif
2091
2092   blackhole_queue   = END_TSO_QUEUE;
2093
2094   sched_state    = SCHED_RUNNING;
2095   recent_activity = ACTIVITY_YES;
2096
2097 #if defined(THREADED_RTS)
2098   /* Initialise the mutex and condition variables used by
2099    * the scheduler. */
2100   initMutex(&sched_mutex);
2101 #endif
2102   
2103   ACQUIRE_LOCK(&sched_mutex);
2104
2105   /* A capability holds the state a native thread needs in
2106    * order to execute STG code. At least one capability is
2107    * floating around (only THREADED_RTS builds have more than one).
2108    */
2109   initCapabilities();
2110
2111   initTaskManager();
2112
2113 #if defined(THREADED_RTS)
2114   initSparkPools();
2115 #endif
2116
2117   RELEASE_LOCK(&sched_mutex);
2118
2119 #if defined(THREADED_RTS)
2120   /*
2121    * Eagerly start one worker to run each Capability, except for
2122    * Capability 0.  The idea is that we're probably going to start a
2123    * bound thread on Capability 0 pretty soon, so we don't want a
2124    * worker task hogging it.
2125    */
2126   { 
2127       nat i;
2128       Capability *cap;
2129       for (i = 1; i < n_capabilities; i++) {
2130           cap = &capabilities[i];
2131           ACQUIRE_LOCK(&cap->lock);
2132           startWorkerTask(cap);
2133           RELEASE_LOCK(&cap->lock);
2134       }
2135   }
2136 #endif
2137 }
2138
2139 void
2140 exitScheduler(
2141     rtsBool wait_foreign
2142 #if !defined(THREADED_RTS)
2143                          __attribute__((unused))
2144 #endif
2145 )
2146                /* see Capability.c, shutdownCapability() */
2147 {
2148     Task *task = NULL;
2149
2150     task = newBoundTask();
2151
2152     // If we haven't killed all the threads yet, do it now.
2153     if (sched_state < SCHED_SHUTTING_DOWN) {
2154         sched_state = SCHED_INTERRUPTING;
2155         waitForReturnCapability(&task->cap,task);
2156         scheduleDoGC(task->cap,task,rtsFalse);
2157         ASSERT(task->incall->tso == NULL);
2158         releaseCapability(task->cap);
2159     }
2160     sched_state = SCHED_SHUTTING_DOWN;
2161
2162 #if defined(THREADED_RTS)
2163     { 
2164         nat i;
2165         
2166         for (i = 0; i < n_capabilities; i++) {
2167             ASSERT(task->incall->tso == NULL);
2168             shutdownCapability(&capabilities[i], task, wait_foreign);
2169         }
2170     }
2171 #endif
2172
2173     boundTaskExiting(task);
2174 }
2175
2176 void
2177 freeScheduler( void )
2178 {
2179     nat still_running;
2180
2181     ACQUIRE_LOCK(&sched_mutex);
2182     still_running = freeTaskManager();
2183     // We can only free the Capabilities if there are no Tasks still
2184     // running.  We might have a Task about to return from a foreign
2185     // call into waitForReturnCapability(), for example (actually,
2186     // this should be the *only* thing that a still-running Task can
2187     // do at this point, and it will block waiting for the
2188     // Capability).
2189     if (still_running == 0) {
2190         freeCapabilities();
2191         if (n_capabilities != 1) {
2192             stgFree(capabilities);
2193         }
2194     }
2195     RELEASE_LOCK(&sched_mutex);
2196 #if defined(THREADED_RTS)
2197     closeMutex(&sched_mutex);
2198 #endif
2199 }
2200
2201 /* -----------------------------------------------------------------------------
2202    performGC
2203
2204    This is the interface to the garbage collector from Haskell land.
2205    We provide this so that external C code can allocate and garbage
2206    collect when called from Haskell via _ccall_GC.
2207    -------------------------------------------------------------------------- */
2208
2209 static void
2210 performGC_(rtsBool force_major)
2211 {
2212     Task *task;
2213
2214     // We must grab a new Task here, because the existing Task may be
2215     // associated with a particular Capability, and chained onto the 
2216     // suspended_ccalls queue.
2217     task = newBoundTask();
2218
2219     waitForReturnCapability(&task->cap,task);
2220     scheduleDoGC(task->cap,task,force_major);
2221     releaseCapability(task->cap);
2222     boundTaskExiting(task);
2223 }
2224
2225 void
2226 performGC(void)
2227 {
2228     performGC_(rtsFalse);
2229 }
2230
2231 void
2232 performMajorGC(void)
2233 {
2234     performGC_(rtsTrue);
2235 }
2236
2237 /* -----------------------------------------------------------------------------
2238    Stack overflow
2239
2240    If the thread has reached its maximum stack size, then raise the
2241    StackOverflow exception in the offending thread.  Otherwise
2242    relocate the TSO into a larger chunk of memory and adjust its stack
2243    size appropriately.
2244    -------------------------------------------------------------------------- */
2245
2246 static StgTSO *
2247 threadStackOverflow(Capability *cap, StgTSO *tso)
2248 {
2249   nat new_stack_size, stack_words;
2250   lnat new_tso_size;
2251   StgPtr new_sp;
2252   StgTSO *dest;
2253
2254   IF_DEBUG(sanity,checkTSO(tso));
2255
2256   if (tso->stack_size >= tso->max_stack_size
2257       && !(tso->flags & TSO_BLOCKEX)) {
2258       // NB. never raise a StackOverflow exception if the thread is
2259       // inside Control.Exceptino.block.  It is impractical to protect
2260       // against stack overflow exceptions, since virtually anything
2261       // can raise one (even 'catch'), so this is the only sensible
2262       // thing to do here.  See bug #767.
2263       //
2264
2265       if (tso->flags & TSO_SQUEEZED) {
2266           return tso;
2267       }
2268       // #3677: In a stack overflow situation, stack squeezing may
2269       // reduce the stack size, but we don't know whether it has been
2270       // reduced enough for the stack check to succeed if we try
2271       // again.  Fortunately stack squeezing is idempotent, so all we
2272       // need to do is record whether *any* squeezing happened.  If we
2273       // are at the stack's absolute -K limit, and stack squeezing
2274       // happened, then we try running the thread again.  The
2275       // TSO_SQUEEZED flag is set by threadPaused() to tell us whether
2276       // squeezing happened or not.
2277
2278       debugTrace(DEBUG_gc,
2279                  "threadStackOverflow of TSO %ld (%p): stack too large (now %ld; max is %ld)",
2280                  (long)tso->id, tso, (long)tso->stack_size, (long)tso->max_stack_size);
2281       IF_DEBUG(gc,
2282                /* If we're debugging, just print out the top of the stack */
2283                printStackChunk(tso->sp, stg_min(tso->stack+tso->stack_size, 
2284                                                 tso->sp+64)));
2285
2286       // Send this thread the StackOverflow exception
2287       throwToSingleThreaded(cap, tso, (StgClosure *)stackOverflow_closure);
2288       return tso;
2289   }
2290
2291
2292   // We also want to avoid enlarging the stack if squeezing has
2293   // already released some of it.  However, we don't want to get into
2294   // a pathalogical situation where a thread has a nearly full stack
2295   // (near its current limit, but not near the absolute -K limit),
2296   // keeps allocating a little bit, squeezing removes a little bit,
2297   // and then it runs again.  So to avoid this, if we squeezed *and*
2298   // there is still less than BLOCK_SIZE_W words free, then we enlarge
2299   // the stack anyway.
2300   if ((tso->flags & TSO_SQUEEZED) && 
2301       ((W_)(tso->sp - tso->stack) >= BLOCK_SIZE_W)) {
2302       return tso;
2303   }
2304
2305   /* Try to double the current stack size.  If that takes us over the
2306    * maximum stack size for this thread, then use the maximum instead
2307    * (that is, unless we're already at or over the max size and we
2308    * can't raise the StackOverflow exception (see above), in which
2309    * case just double the size). Finally round up so the TSO ends up as
2310    * a whole number of blocks.
2311    */
2312   if (tso->stack_size >= tso->max_stack_size) {
2313       new_stack_size = tso->stack_size * 2;
2314   } else { 
2315       new_stack_size = stg_min(tso->stack_size * 2, tso->max_stack_size);
2316   }
2317   new_tso_size   = (lnat)BLOCK_ROUND_UP(new_stack_size * sizeof(W_) + 
2318                                        TSO_STRUCT_SIZE)/sizeof(W_);
2319   new_tso_size = round_to_mblocks(new_tso_size);  /* Be MBLOCK-friendly */
2320   new_stack_size = new_tso_size - TSO_STRUCT_SIZEW;
2321
2322   debugTrace(DEBUG_sched, 
2323              "increasing stack size from %ld words to %d.",
2324              (long)tso->stack_size, new_stack_size);
2325
2326   dest = (StgTSO *)allocate(cap,new_tso_size);
2327   TICK_ALLOC_TSO(new_stack_size,0);
2328
2329   /* copy the TSO block and the old stack into the new area */
2330   memcpy(dest,tso,TSO_STRUCT_SIZE);
2331   stack_words = tso->stack + tso->stack_size - tso->sp;
2332   new_sp = (P_)dest + new_tso_size - stack_words;
2333   memcpy(new_sp, tso->sp, stack_words * sizeof(W_));
2334
2335   /* relocate the stack pointers... */
2336   dest->sp         = new_sp;
2337   dest->stack_size = new_stack_size;
2338         
2339   /* Mark the old TSO as relocated.  We have to check for relocated
2340    * TSOs in the garbage collector and any primops that deal with TSOs.
2341    *
2342    * It's important to set the sp value to just beyond the end
2343    * of the stack, so we don't attempt to scavenge any part of the
2344    * dead TSO's stack.
2345    */
2346   tso->what_next = ThreadRelocated;
2347   setTSOLink(cap,tso,dest);
2348   tso->sp = (P_)&(tso->stack[tso->stack_size]);
2349   tso->why_blocked = NotBlocked;
2350
2351   IF_DEBUG(sanity,checkTSO(dest));
2352 #if 0
2353   IF_DEBUG(scheduler,printTSO(dest));
2354 #endif
2355
2356   return dest;
2357 }
2358
2359 static StgTSO *
2360 threadStackUnderflow (Capability *cap, Task *task, StgTSO *tso)
2361 {
2362     bdescr *bd, *new_bd;
2363     lnat free_w, tso_size_w;
2364     StgTSO *new_tso;
2365
2366     tso_size_w = tso_sizeW(tso);
2367
2368     if (tso_size_w < MBLOCK_SIZE_W ||
2369           // TSO is less than 2 mblocks (since the first mblock is
2370           // shorter than MBLOCK_SIZE_W)
2371         (tso_size_w - BLOCKS_PER_MBLOCK*BLOCK_SIZE_W) % MBLOCK_SIZE_W != 0 ||
2372           // or TSO is not a whole number of megablocks (ensuring
2373           // precondition of splitLargeBlock() below)
2374         (tso_size_w <= round_up_to_mblocks(RtsFlags.GcFlags.initialStkSize)) ||
2375           // or TSO is smaller than the minimum stack size (rounded up)
2376         (nat)(tso->stack + tso->stack_size - tso->sp) > tso->stack_size / 4) 
2377           // or stack is using more than 1/4 of the available space
2378     {
2379         // then do nothing
2380         return tso;
2381     }
2382
2383     // this is the number of words we'll free
2384     free_w = round_to_mblocks(tso_size_w/2);
2385
2386     bd = Bdescr((StgPtr)tso);
2387     new_bd = splitLargeBlock(bd, free_w / BLOCK_SIZE_W);
2388     bd->free = bd->start + TSO_STRUCT_SIZEW;
2389
2390     new_tso = (StgTSO *)new_bd->start;
2391     memcpy(new_tso,tso,TSO_STRUCT_SIZE);
2392     new_tso->stack_size = new_bd->free - new_tso->stack;
2393
2394     // The original TSO was dirty and probably on the mutable
2395     // list. The new TSO is not yet on the mutable list, so we better
2396     // put it there.
2397     new_tso->dirty = 0;
2398     new_tso->flags &= ~TSO_LINK_DIRTY;
2399     dirty_TSO(cap, new_tso);
2400
2401     debugTrace(DEBUG_sched, "thread %ld: reducing TSO size from %lu words to %lu",
2402                (long)tso->id, tso_size_w, tso_sizeW(new_tso));
2403
2404     tso->what_next = ThreadRelocated;
2405     tso->_link = new_tso; // no write barrier reqd: same generation
2406
2407     // The TSO attached to this Task may have moved, so update the
2408     // pointer to it.
2409     if (task->incall->tso == tso) {
2410         task->incall->tso = new_tso;
2411     }
2412
2413     IF_DEBUG(sanity,checkTSO(new_tso));
2414
2415     return new_tso;
2416 }
2417
2418 /* ---------------------------------------------------------------------------
2419    Interrupt execution
2420    - usually called inside a signal handler so it mustn't do anything fancy.   
2421    ------------------------------------------------------------------------ */
2422
2423 void
2424 interruptStgRts(void)
2425 {
2426     sched_state = SCHED_INTERRUPTING;
2427     setContextSwitches();
2428 #if defined(THREADED_RTS)
2429     wakeUpRts();
2430 #endif
2431 }
2432
2433 /* -----------------------------------------------------------------------------
2434    Wake up the RTS
2435    
2436    This function causes at least one OS thread to wake up and run the
2437    scheduler loop.  It is invoked when the RTS might be deadlocked, or
2438    an external event has arrived that may need servicing (eg. a
2439    keyboard interrupt).
2440
2441    In the single-threaded RTS we don't do anything here; we only have
2442    one thread anyway, and the event that caused us to want to wake up
2443    will have interrupted any blocking system call in progress anyway.
2444    -------------------------------------------------------------------------- */
2445
2446 #if defined(THREADED_RTS)
2447 void wakeUpRts(void)
2448 {
2449     // This forces the IO Manager thread to wakeup, which will
2450     // in turn ensure that some OS thread wakes up and runs the
2451     // scheduler loop, which will cause a GC and deadlock check.
2452     ioManagerWakeup();
2453 }
2454 #endif
2455
2456 /* -----------------------------------------------------------------------------
2457  * checkBlackHoles()
2458  *
2459  * Check the blackhole_queue for threads that can be woken up.  We do
2460  * this periodically: before every GC, and whenever the run queue is
2461  * empty.
2462  *
2463  * An elegant solution might be to just wake up all the blocked
2464  * threads with awakenBlockedQueue occasionally: they'll go back to
2465  * sleep again if the object is still a BLACKHOLE.  Unfortunately this
2466  * doesn't give us a way to tell whether we've actually managed to
2467  * wake up any threads, so we would be busy-waiting.
2468  *
2469  * -------------------------------------------------------------------------- */
2470
2471 static rtsBool
2472 checkBlackHoles (Capability *cap)
2473 {
2474     StgTSO **prev, *t;
2475     rtsBool any_woke_up = rtsFalse;
2476     StgHalfWord type;
2477
2478     // blackhole_queue is global:
2479     ASSERT_LOCK_HELD(&sched_mutex);
2480
2481     debugTrace(DEBUG_sched, "checking threads blocked on black holes");
2482
2483     // ASSUMES: sched_mutex
2484     prev = &blackhole_queue;
2485     t = blackhole_queue;
2486     while (t != END_TSO_QUEUE) {
2487         if (t->what_next == ThreadRelocated) {
2488             t = t->_link;
2489             continue;
2490         }
2491         ASSERT(t->why_blocked == BlockedOnBlackHole);
2492         type = get_itbl(UNTAG_CLOSURE(t->block_info.closure))->type;
2493         if (type != BLACKHOLE && type != CAF_BLACKHOLE) {
2494             IF_DEBUG(sanity,checkTSO(t));
2495             t = unblockOne(cap, t);
2496             *prev = t;
2497             any_woke_up = rtsTrue;
2498         } else {
2499             prev = &t->_link;
2500             t = t->_link;
2501         }
2502     }
2503
2504     return any_woke_up;
2505 }
2506
2507 /* -----------------------------------------------------------------------------
2508    Deleting threads
2509
2510    This is used for interruption (^C) and forking, and corresponds to
2511    raising an exception but without letting the thread catch the
2512    exception.
2513    -------------------------------------------------------------------------- */
2514
2515 static void 
2516 deleteThread (Capability *cap, StgTSO *tso)
2517 {
2518     // NOTE: must only be called on a TSO that we have exclusive
2519     // access to, because we will call throwToSingleThreaded() below.
2520     // The TSO must be on the run queue of the Capability we own, or 
2521     // we must own all Capabilities.
2522
2523     if (tso->why_blocked != BlockedOnCCall &&
2524         tso->why_blocked != BlockedOnCCall_NoUnblockExc) {
2525         throwToSingleThreaded(cap,tso,NULL);
2526     }
2527 }
2528
2529 #ifdef FORKPROCESS_PRIMOP_SUPPORTED
2530 static void 
2531 deleteThread_(Capability *cap, StgTSO *tso)
2532 { // for forkProcess only:
2533   // like deleteThread(), but we delete threads in foreign calls, too.
2534
2535     if (tso->why_blocked == BlockedOnCCall ||
2536         tso->why_blocked == BlockedOnCCall_NoUnblockExc) {
2537         unblockOne(cap,tso);
2538         tso->what_next = ThreadKilled;
2539     } else {
2540         deleteThread(cap,tso);
2541     }
2542 }
2543 #endif
2544
2545 /* -----------------------------------------------------------------------------
2546    raiseExceptionHelper
2547    
2548    This function is called by the raise# primitve, just so that we can
2549    move some of the tricky bits of raising an exception from C-- into
2550    C.  Who knows, it might be a useful re-useable thing here too.
2551    -------------------------------------------------------------------------- */
2552
2553 StgWord
2554 raiseExceptionHelper (StgRegTable *reg, StgTSO *tso, StgClosure *exception)
2555 {
2556     Capability *cap = regTableToCapability(reg);
2557     StgThunk *raise_closure = NULL;
2558     StgPtr p, next;
2559     StgRetInfoTable *info;
2560     //
2561     // This closure represents the expression 'raise# E' where E
2562     // is the exception raise.  It is used to overwrite all the
2563     // thunks which are currently under evaluataion.
2564     //
2565
2566     // OLD COMMENT (we don't have MIN_UPD_SIZE now):
2567     // LDV profiling: stg_raise_info has THUNK as its closure
2568     // type. Since a THUNK takes at least MIN_UPD_SIZE words in its
2569     // payload, MIN_UPD_SIZE is more approprate than 1.  It seems that
2570     // 1 does not cause any problem unless profiling is performed.
2571     // However, when LDV profiling goes on, we need to linearly scan
2572     // small object pool, where raise_closure is stored, so we should
2573     // use MIN_UPD_SIZE.
2574     //
2575     // raise_closure = (StgClosure *)RET_STGCALL1(P_,allocate,
2576     //                                 sizeofW(StgClosure)+1);
2577     //
2578
2579     //
2580     // Walk up the stack, looking for the catch frame.  On the way,
2581     // we update any closures pointed to from update frames with the
2582     // raise closure that we just built.
2583     //
2584     p = tso->sp;
2585     while(1) {
2586         info = get_ret_itbl((StgClosure *)p);
2587         next = p + stack_frame_sizeW((StgClosure *)p);
2588         switch (info->i.type) {
2589             
2590         case UPDATE_FRAME:
2591             // Only create raise_closure if we need to.
2592             if (raise_closure == NULL) {
2593                 raise_closure = 
2594                     (StgThunk *)allocate(cap,sizeofW(StgThunk)+1);
2595                 SET_HDR(raise_closure, &stg_raise_info, CCCS);
2596                 raise_closure->payload[0] = exception;
2597             }
2598             UPD_IND(cap, ((StgUpdateFrame *)p)->updatee,
2599                     (StgClosure *)raise_closure);
2600             p = next;
2601             continue;
2602
2603         case ATOMICALLY_FRAME:
2604             debugTrace(DEBUG_stm, "found ATOMICALLY_FRAME at %p", p);
2605             tso->sp = p;
2606             return ATOMICALLY_FRAME;
2607             
2608         case CATCH_FRAME:
2609             tso->sp = p;
2610             return CATCH_FRAME;
2611
2612         case CATCH_STM_FRAME:
2613             debugTrace(DEBUG_stm, "found CATCH_STM_FRAME at %p", p);
2614             tso->sp = p;
2615             return CATCH_STM_FRAME;
2616             
2617         case STOP_FRAME:
2618             tso->sp = p;
2619             return STOP_FRAME;
2620
2621         case CATCH_RETRY_FRAME:
2622         default:
2623             p = next; 
2624             continue;
2625         }
2626     }
2627 }
2628
2629
2630 /* -----------------------------------------------------------------------------
2631    findRetryFrameHelper
2632
2633    This function is called by the retry# primitive.  It traverses the stack
2634    leaving tso->sp referring to the frame which should handle the retry.  
2635
2636    This should either be a CATCH_RETRY_FRAME (if the retry# is within an orElse#) 
2637    or should be a ATOMICALLY_FRAME (if the retry# reaches the top level).  
2638
2639    We skip CATCH_STM_FRAMEs (aborting and rolling back the nested tx that they
2640    create) because retries are not considered to be exceptions, despite the
2641    similar implementation.
2642
2643    We should not expect to see CATCH_FRAME or STOP_FRAME because those should
2644    not be created within memory transactions.
2645    -------------------------------------------------------------------------- */
2646
2647 StgWord
2648 findRetryFrameHelper (StgTSO *tso)
2649 {
2650   StgPtr           p, next;
2651   StgRetInfoTable *info;
2652
2653   p = tso -> sp;
2654   while (1) {
2655     info = get_ret_itbl((StgClosure *)p);
2656     next = p + stack_frame_sizeW((StgClosure *)p);
2657     switch (info->i.type) {
2658       
2659     case ATOMICALLY_FRAME:
2660         debugTrace(DEBUG_stm,
2661                    "found ATOMICALLY_FRAME at %p during retry", p);
2662         tso->sp = p;
2663         return ATOMICALLY_FRAME;
2664       
2665     case CATCH_RETRY_FRAME:
2666         debugTrace(DEBUG_stm,
2667                    "found CATCH_RETRY_FRAME at %p during retrry", p);
2668         tso->sp = p;
2669         return CATCH_RETRY_FRAME;
2670       
2671     case CATCH_STM_FRAME: {
2672         StgTRecHeader *trec = tso -> trec;
2673         StgTRecHeader *outer = trec -> enclosing_trec;
2674         debugTrace(DEBUG_stm,
2675                    "found CATCH_STM_FRAME at %p during retry", p);
2676         debugTrace(DEBUG_stm, "trec=%p outer=%p", trec, outer);
2677         stmAbortTransaction(tso -> cap, trec);
2678         stmFreeAbortedTRec(tso -> cap, trec);
2679         tso -> trec = outer;
2680         p = next; 
2681         continue;
2682     }
2683       
2684
2685     default:
2686       ASSERT(info->i.type != CATCH_FRAME);
2687       ASSERT(info->i.type != STOP_FRAME);
2688       p = next; 
2689       continue;
2690     }
2691   }
2692 }
2693
2694 /* -----------------------------------------------------------------------------
2695    resurrectThreads is called after garbage collection on the list of
2696    threads found to be garbage.  Each of these threads will be woken
2697    up and sent a signal: BlockedOnDeadMVar if the thread was blocked
2698    on an MVar, or NonTermination if the thread was blocked on a Black
2699    Hole.
2700
2701    Locks: assumes we hold *all* the capabilities.
2702    -------------------------------------------------------------------------- */
2703
2704 void
2705 resurrectThreads (StgTSO *threads)
2706 {
2707     StgTSO *tso, *next;
2708     Capability *cap;
2709     generation *gen;
2710
2711     for (tso = threads; tso != END_TSO_QUEUE; tso = next) {
2712         next = tso->global_link;
2713
2714         gen = Bdescr((P_)tso)->gen;
2715         tso->global_link = gen->threads;
2716         gen->threads = tso;
2717
2718         debugTrace(DEBUG_sched, "resurrecting thread %lu", (unsigned long)tso->id);
2719         
2720         // Wake up the thread on the Capability it was last on
2721         cap = tso->cap;
2722         
2723         switch (tso->why_blocked) {
2724         case BlockedOnMVar:
2725             /* Called by GC - sched_mutex lock is currently held. */
2726             throwToSingleThreaded(cap, tso,
2727                                   (StgClosure *)blockedIndefinitelyOnMVar_closure);
2728             break;
2729         case BlockedOnBlackHole:
2730             throwToSingleThreaded(cap, tso,
2731                                   (StgClosure *)nonTermination_closure);
2732             break;
2733         case BlockedOnSTM:
2734             throwToSingleThreaded(cap, tso,
2735                                   (StgClosure *)blockedIndefinitelyOnSTM_closure);
2736             break;
2737         case NotBlocked:
2738             /* This might happen if the thread was blocked on a black hole
2739              * belonging to a thread that we've just woken up (raiseAsync
2740              * can wake up threads, remember...).
2741              */
2742             continue;
2743         default:
2744             barf("resurrectThreads: thread blocked in a strange way: %d",
2745                  tso->why_blocked);
2746         }
2747     }
2748 }