1 /* -----------------------------------------------------------------------------
3 * (c) The GHC Team 1998-2005
5 * Prototypes for functions in Schedule.c
6 * (RTS internal scheduler interface)
8 * -------------------------------------------------------------------------*/
13 #include "rts/OSThreads.h"
14 #include "Capability.h"
17 #include "BeginPrivate.h"
19 /* initScheduler(), exitScheduler()
20 * Called from STG : no
21 * Locks assumed : none
23 void initScheduler (void);
24 void exitScheduler (rtsBool wait_foreign);
25 void freeScheduler (void);
27 // Place a new thread on the run queue of the current Capability
28 void scheduleThread (Capability *cap, StgTSO *tso);
30 // Place a new thread on the run queue of a specified Capability
31 // (cap is the currently owned Capability, cpu is the number of
32 // the desired Capability).
33 void scheduleThreadOn(Capability *cap, StgWord cpu, StgTSO *tso);
37 * Causes an OS thread to wake up and run the scheduler, if necessary.
39 #if defined(THREADED_RTS)
43 /* raiseExceptionHelper */
44 StgWord raiseExceptionHelper (StgRegTable *reg, StgTSO *tso, StgClosure *exception);
46 /* findRetryFrameHelper */
47 StgWord findRetryFrameHelper (Capability *cap, StgTSO *tso);
49 /* Entry point for a new worker */
50 void scheduleWorker (Capability *cap, Task *task);
52 /* The state of the scheduler. This is used to control the sequence
53 * of events during shutdown, and when the runtime is interrupted
56 #define SCHED_RUNNING 0 /* running as normal */
57 #define SCHED_INTERRUPTING 1 /* ^C detected, before threads are deleted */
58 #define SCHED_SHUTTING_DOWN 2 /* final shutdown */
60 extern volatile StgWord sched_state;
63 * flag that tracks whether we have done any execution in this time slice.
65 #define ACTIVITY_YES 0 /* there has been activity in the current slice */
66 #define ACTIVITY_MAYBE_NO 1 /* no activity in the current slice */
67 #define ACTIVITY_INACTIVE 2 /* a complete slice has passed with no activity */
68 #define ACTIVITY_DONE_GC 3 /* like 2, but we've done a GC too */
70 /* Recent activity flag.
71 * Locks required : Transition from MAYBE_NO to INACTIVE
72 * happens in the timer signal, so it is atomic. Trnasition from
73 * INACTIVE to DONE_GC happens under sched_mutex. No lock required
74 * to set it to ACTIVITY_YES.
76 extern volatile StgWord recent_activity;
79 * Locks required : sched_mutex
81 * In GranSim we have one run/blocked_queue per PE.
83 extern StgTSO *blackhole_queue;
84 #if !defined(THREADED_RTS)
85 extern StgTSO *blocked_queue_hd, *blocked_queue_tl;
86 extern StgTSO *sleeping_queue;
89 extern rtsBool heap_overflow;
91 #if defined(THREADED_RTS)
92 extern Mutex sched_mutex;
95 /* Called by shutdown_handler(). */
96 void interruptStgRts (void);
98 void resurrectThreads (StgTSO *);
100 /* -----------------------------------------------------------------------------
101 * Some convenient macros/inline functions...
106 /* END_TSO_QUEUE and friends now defined in includes/StgMiscClosures.h */
108 /* Add a thread to the end of the run queue.
109 * NOTE: tso->link should be END_TSO_QUEUE before calling this macro.
110 * ASSUMES: cap->running_task is the current task.
113 appendToRunQueue (Capability *cap, StgTSO *tso);
116 appendToRunQueue (Capability *cap, StgTSO *tso)
118 ASSERT(tso->_link == END_TSO_QUEUE);
119 if (cap->run_queue_hd == END_TSO_QUEUE) {
120 cap->run_queue_hd = tso;
121 tso->block_info.prev = END_TSO_QUEUE;
123 setTSOLink(cap, cap->run_queue_tl, tso);
124 setTSOPrev(cap, tso, cap->run_queue_tl);
126 cap->run_queue_tl = tso;
127 traceEventThreadRunnable (cap, tso);
130 /* Push a thread on the beginning of the run queue.
131 * ASSUMES: cap->running_task is the current task.
134 pushOnRunQueue (Capability *cap, StgTSO *tso);
137 pushOnRunQueue (Capability *cap, StgTSO *tso)
139 setTSOLink(cap, tso, cap->run_queue_hd);
140 tso->block_info.prev = END_TSO_QUEUE;
141 if (cap->run_queue_hd != END_TSO_QUEUE) {
142 setTSOPrev(cap, cap->run_queue_hd, tso);
144 cap->run_queue_hd = tso;
145 if (cap->run_queue_tl == END_TSO_QUEUE) {
146 cap->run_queue_tl = tso;
150 /* Pop the first thread off the runnable queue.
152 INLINE_HEADER StgTSO *
153 popRunQueue (Capability *cap)
155 StgTSO *t = cap->run_queue_hd;
156 ASSERT(t != END_TSO_QUEUE);
157 cap->run_queue_hd = t->_link;
158 if (t->_link != END_TSO_QUEUE) {
159 t->_link->block_info.prev = END_TSO_QUEUE;
161 t->_link = END_TSO_QUEUE; // no write barrier req'd
162 if (cap->run_queue_hd == END_TSO_QUEUE) {
163 cap->run_queue_tl = END_TSO_QUEUE;
168 extern void removeFromRunQueue (Capability *cap, StgTSO *tso);
170 /* Add a thread to the end of the blocked queue.
172 #if !defined(THREADED_RTS)
174 appendToBlockedQueue(StgTSO *tso)
176 ASSERT(tso->_link == END_TSO_QUEUE);
177 if (blocked_queue_hd == END_TSO_QUEUE) {
178 blocked_queue_hd = tso;
180 setTSOLink(&MainCapability, blocked_queue_tl, tso);
182 blocked_queue_tl = tso;
186 /* Check whether various thread queues are empty
188 INLINE_HEADER rtsBool
189 emptyQueue (StgTSO *q)
191 return (q == END_TSO_QUEUE);
194 INLINE_HEADER rtsBool
195 emptyRunQueue(Capability *cap)
197 return emptyQueue(cap->run_queue_hd);
200 #if !defined(THREADED_RTS)
201 #define EMPTY_BLOCKED_QUEUE() (emptyQueue(blocked_queue_hd))
202 #define EMPTY_SLEEPING_QUEUE() (emptyQueue(sleeping_queue))
205 INLINE_HEADER rtsBool
206 emptyThreadQueues(Capability *cap)
208 return emptyRunQueue(cap)
209 #if !defined(THREADED_RTS)
210 && EMPTY_BLOCKED_QUEUE() && EMPTY_SLEEPING_QUEUE()
215 #endif /* !IN_STG_CODE */
217 #include "EndPrivate.h"
219 #endif /* SCHEDULE_H */