Change the representation of the MVar blocked queue
[ghc-hetmet.git] / includes / stg / MiscClosures.h
1 /* ----------------------------------------------------------------------------
2  *
3  * (c) The GHC Team, 1998-2009
4  *
5  * Declarations for various symbols exported by the RTS.
6  *
7  * ToDo: many of the symbols in here don't need to be exported, but
8  * our Cmm code generator doesn't know how to generate local symbols
9  * for the RTS bits (it assumes all RTS symbols are external).
10  *
11  * See wiki:Commentary/Compiler/Backends/PprC#Prototypes
12  *
13  * Do not #include this file directly: #include "Rts.h" instead.
14  *
15  * To understand the structure of the RTS headers, see the wiki:
16  *   http://hackage.haskell.org/trac/ghc/wiki/Commentary/SourceTree/Includes
17  *
18  * --------------------------------------------------------------------------*/
19
20 #ifndef STGMISCCLOSURES_H
21 #define STGMISCCLOSURES_H
22
23 #if IN_STG_CODE
24 #  define RTS_RET_INFO(i)   extern W_(i)[]
25 #  define RTS_FUN_INFO(i)   extern W_(i)[]
26 #  define RTS_THUNK_INFO(i) extern W_(i)[]
27 #  define RTS_INFO(i)       extern W_(i)[]
28 #  define RTS_CLOSURE(i)    extern W_(i)[]
29 #  define RTS_FUN_DECL(f)   extern DLL_IMPORT_RTS StgFunPtr f(void)
30 #else
31 #  define RTS_RET_INFO(i)   extern DLL_IMPORT_RTS const StgRetInfoTable i
32 #  define RTS_FUN_INFO(i)   extern DLL_IMPORT_RTS const StgFunInfoTable i
33 #  define RTS_THUNK_INFO(i) extern DLL_IMPORT_RTS const StgThunkInfoTable i
34 #  define RTS_INFO(i)       extern DLL_IMPORT_RTS const StgInfoTable i
35 #  define RTS_CLOSURE(i)    extern DLL_IMPORT_RTS StgClosure i
36 #  define RTS_FUN_DECL(f)   extern DLL_IMPORT_RTS StgFunPtr f(void)
37 #endif
38
39 #ifdef TABLES_NEXT_TO_CODE
40 #  define RTS_RET(f)      RTS_INFO(f##_info)
41 #  define RTS_ENTRY(f)    RTS_INFO(f##_info)
42 #  define RTS_FUN(f)      RTS_FUN_INFO(f##_info)
43 #  define RTS_THUNK(f)    RTS_THUNK_INFO(f##_info)
44 #else
45 #  define RTS_RET(f)      RTS_INFO(f##_info);  RTS_FUN_DECL(f##_ret)
46 #  define RTS_ENTRY(f)    RTS_INFO(f##_info);  RTS_FUN_DECL(f##_entry)
47 #  define RTS_FUN(f)      RTS_FUN_INFO(f##_info); RTS_FUN_DECL(f##_entry)
48 #  define RTS_THUNK(f)    RTS_THUNK_INFO(f##_info); RTS_FUN_DECL(f##_entry)
49 #endif
50
51 /* Stack frames */
52 RTS_RET(stg_upd_frame);
53 RTS_RET(stg_bh_upd_frame);
54 RTS_RET(stg_marked_upd_frame);
55 RTS_RET(stg_noupd_frame);
56 RTS_RET(stg_catch_frame);
57 RTS_RET(stg_catch_retry_frame);
58 RTS_RET(stg_atomically_frame);
59 RTS_RET(stg_atomically_waiting_frame);
60 RTS_RET(stg_catch_stm_frame);
61 RTS_RET(stg_unblockAsyncExceptionszh_ret);
62
63 // RTS_FUN(stg_interp_constr_entry);
64 //
65 // This is referenced using the FFI in the compiler (ByteCodeItbls),
66 // so we can't give it the correct type here because the prototypes
67 // would clash (FFI references are always declared with type StgWord[]
68 // in the generated C code).
69
70 /* Magic glue code for when compiled code returns a value in R1/F1/D1
71    or a VoidRep to the interpreter. */
72 RTS_RET(stg_ctoi_R1p);
73 RTS_RET(stg_ctoi_R1unpt);
74 RTS_RET(stg_ctoi_R1n);
75 RTS_RET(stg_ctoi_F1);
76 RTS_RET(stg_ctoi_D1);
77 RTS_RET(stg_ctoi_L1);
78 RTS_RET(stg_ctoi_V);
79
80 RTS_RET(stg_apply_interp);
81
82 RTS_ENTRY(stg_IND);
83 RTS_ENTRY(stg_IND_direct);
84 RTS_ENTRY(stg_IND_STATIC);
85 RTS_ENTRY(stg_IND_PERM);
86 RTS_ENTRY(stg_IND_OLDGEN);
87 RTS_ENTRY(stg_IND_OLDGEN_PERM);
88 RTS_ENTRY(stg_BLACKHOLE);
89 RTS_ENTRY(stg_CAF_BLACKHOLE);
90 RTS_ENTRY(__stg_EAGER_BLACKHOLE);
91 RTS_ENTRY(stg_WHITEHOLE);
92 RTS_ENTRY(stg_BLOCKING_QUEUE_CLEAN);
93 RTS_ENTRY(stg_BLOCKING_QUEUE_DIRTY);
94
95 RTS_FUN(stg_BCO);
96 RTS_ENTRY(stg_EVACUATED);
97 RTS_ENTRY(stg_WEAK);
98 RTS_ENTRY(stg_DEAD_WEAK);
99 RTS_ENTRY(stg_STABLE_NAME);
100 RTS_ENTRY(stg_MVAR_CLEAN);
101 RTS_ENTRY(stg_MVAR_DIRTY);
102 RTS_ENTRY(stg_TSO);
103 RTS_ENTRY(stg_ARR_WORDS);
104 RTS_ENTRY(stg_MUT_ARR_WORDS);
105 RTS_ENTRY(stg_MUT_ARR_PTRS_CLEAN);
106 RTS_ENTRY(stg_MUT_ARR_PTRS_DIRTY);
107 RTS_ENTRY(stg_MUT_ARR_PTRS_FROZEN);
108 RTS_ENTRY(stg_MUT_ARR_PTRS_FROZEN0);
109 RTS_ENTRY(stg_MUT_VAR_CLEAN);
110 RTS_ENTRY(stg_MUT_VAR_DIRTY);
111 RTS_ENTRY(stg_END_TSO_QUEUE);
112 RTS_ENTRY(stg_MSG_TRY_WAKEUP);
113 RTS_ENTRY(stg_MSG_THROWTO);
114 RTS_ENTRY(stg_MSG_BLACKHOLE);
115 RTS_ENTRY(stg_MSG_NULL);
116 RTS_ENTRY(stg_MVAR_TSO_QUEUE);
117 RTS_ENTRY(stg_catch);
118 RTS_ENTRY(stg_PAP);
119 RTS_ENTRY(stg_AP);
120 RTS_ENTRY(stg_AP_NOUPD);
121 RTS_ENTRY(stg_AP_STACK);
122 RTS_ENTRY(stg_dummy_ret);
123 RTS_ENTRY(stg_raise);
124 RTS_ENTRY(stg_raise_ret);
125 RTS_ENTRY(stg_TVAR_WATCH_QUEUE);
126 RTS_ENTRY(stg_INVARIANT_CHECK_QUEUE);
127 RTS_ENTRY(stg_ATOMIC_INVARIANT);
128 RTS_ENTRY(stg_TVAR);
129 RTS_ENTRY(stg_TREC_CHUNK);
130 RTS_ENTRY(stg_TREC_HEADER);
131 RTS_ENTRY(stg_END_STM_WATCH_QUEUE);
132 RTS_ENTRY(stg_END_INVARIANT_CHECK_QUEUE);
133 RTS_ENTRY(stg_END_STM_CHUNK_LIST);
134 RTS_ENTRY(stg_NO_TREC);
135
136 /* closures */
137
138 RTS_CLOSURE(stg_END_TSO_QUEUE_closure);
139 RTS_CLOSURE(stg_NO_FINALIZER_closure);
140 RTS_CLOSURE(stg_dummy_ret_closure);
141 RTS_CLOSURE(stg_forceIO_closure);
142
143 RTS_CLOSURE(stg_END_STM_WATCH_QUEUE_closure);
144 RTS_CLOSURE(stg_END_INVARIANT_CHECK_QUEUE_closure);
145 RTS_CLOSURE(stg_END_STM_CHUNK_LIST_closure);
146 RTS_CLOSURE(stg_NO_TREC_closure);
147
148 RTS_ENTRY(stg_NO_FINALIZER_entry);
149
150 #if IN_STG_CODE
151 extern DLL_IMPORT_RTS StgWordArray stg_CHARLIKE_closure;
152 extern DLL_IMPORT_RTS StgWordArray stg_INTLIKE_closure;
153 #else
154 extern DLL_IMPORT_RTS StgIntCharlikeClosure stg_CHARLIKE_closure[];
155 extern DLL_IMPORT_RTS StgIntCharlikeClosure stg_INTLIKE_closure[];
156 #endif
157
158 /* StgStartup */
159
160 RTS_RET(stg_forceIO);
161 RTS_RET(stg_noforceIO);
162
163 /* standard entry points */
164
165 /* standard selector thunks */
166
167 RTS_RET(stg_sel_ret_0_upd);
168 RTS_RET(stg_sel_ret_1_upd);
169 RTS_RET(stg_sel_ret_2_upd);
170 RTS_RET(stg_sel_ret_3_upd);
171 RTS_RET(stg_sel_ret_4_upd);
172 RTS_RET(stg_sel_ret_5_upd);
173 RTS_RET(stg_sel_ret_6_upd);
174 RTS_RET(stg_sel_ret_7_upd);
175 RTS_RET(stg_sel_ret_8_upd);
176 RTS_RET(stg_sel_ret_9_upd);
177 RTS_RET(stg_sel_ret_10_upd);
178 RTS_RET(stg_sel_ret_11_upd);
179 RTS_RET(stg_sel_ret_12_upd);
180 RTS_RET(stg_sel_ret_13_upd);
181 RTS_RET(stg_sel_ret_14_upd);
182 RTS_RET(stg_sel_ret_15_upd);
183
184 RTS_ENTRY(stg_sel_0_upd);
185 RTS_ENTRY(stg_sel_1_upd);
186 RTS_ENTRY(stg_sel_2_upd);
187 RTS_ENTRY(stg_sel_3_upd);
188 RTS_ENTRY(stg_sel_4_upd);
189 RTS_ENTRY(stg_sel_5_upd);
190 RTS_ENTRY(stg_sel_6_upd);
191 RTS_ENTRY(stg_sel_7_upd);
192 RTS_ENTRY(stg_sel_8_upd);
193 RTS_ENTRY(stg_sel_9_upd);
194 RTS_ENTRY(stg_sel_10_upd);
195 RTS_ENTRY(stg_sel_11_upd);
196 RTS_ENTRY(stg_sel_12_upd);
197 RTS_ENTRY(stg_sel_13_upd);
198 RTS_ENTRY(stg_sel_14_upd);
199 RTS_ENTRY(stg_sel_15_upd);
200
201 RTS_ENTRY(stg_sel_0_noupd);
202 RTS_ENTRY(stg_sel_1_noupd);
203 RTS_ENTRY(stg_sel_2_noupd);
204 RTS_ENTRY(stg_sel_3_noupd);
205 RTS_ENTRY(stg_sel_4_noupd);
206 RTS_ENTRY(stg_sel_5_noupd);
207 RTS_ENTRY(stg_sel_6_noupd);
208 RTS_ENTRY(stg_sel_7_noupd);
209 RTS_ENTRY(stg_sel_8_noupd);
210 RTS_ENTRY(stg_sel_9_noupd);
211 RTS_ENTRY(stg_sel_10_noupd);
212 RTS_ENTRY(stg_sel_11_noupd);
213 RTS_ENTRY(stg_sel_12_noupd);
214 RTS_ENTRY(stg_sel_13_noupd);
215 RTS_ENTRY(stg_sel_14_noupd);
216 RTS_ENTRY(stg_sel_15_noupd);
217
218 /* standard ap thunks */
219
220 RTS_THUNK(stg_ap_1_upd);
221 RTS_THUNK(stg_ap_2_upd);
222 RTS_THUNK(stg_ap_3_upd);
223 RTS_THUNK(stg_ap_4_upd);
224 RTS_THUNK(stg_ap_5_upd);
225 RTS_THUNK(stg_ap_6_upd);
226 RTS_THUNK(stg_ap_7_upd);
227
228 /* standard application routines (see also rts/gen_apply.py, 
229  * and compiler/codeGen/CgStackery.lhs).
230  */
231 RTS_RET(stg_ap_v);
232 RTS_RET(stg_ap_f);
233 RTS_RET(stg_ap_d);
234 RTS_RET(stg_ap_l);
235 RTS_RET(stg_ap_n);
236 RTS_RET(stg_ap_p);
237 RTS_RET(stg_ap_pv);
238 RTS_RET(stg_ap_pp);
239 RTS_RET(stg_ap_ppv);
240 RTS_RET(stg_ap_ppp);
241 RTS_RET(stg_ap_pppv);
242 RTS_RET(stg_ap_pppp);
243 RTS_RET(stg_ap_ppppp);
244 RTS_RET(stg_ap_pppppp);
245
246 RTS_FUN_DECL(stg_ap_0_fast);
247 RTS_FUN_DECL(stg_ap_v_fast);
248 RTS_FUN_DECL(stg_ap_f_fast);
249 RTS_FUN_DECL(stg_ap_d_fast);
250 RTS_FUN_DECL(stg_ap_l_fast);
251 RTS_FUN_DECL(stg_ap_n_fast);
252 RTS_FUN_DECL(stg_ap_p_fast);
253 RTS_FUN_DECL(stg_ap_pv_fast);
254 RTS_FUN_DECL(stg_ap_pp_fast);
255 RTS_FUN_DECL(stg_ap_ppv_fast);
256 RTS_FUN_DECL(stg_ap_ppp_fast);
257 RTS_FUN_DECL(stg_ap_pppv_fast);
258 RTS_FUN_DECL(stg_ap_pppp_fast);
259 RTS_FUN_DECL(stg_ap_ppppp_fast);
260 RTS_FUN_DECL(stg_ap_pppppp_fast);
261 RTS_FUN_DECL(stg_PAP_apply);
262
263 /* standard GC & stack check entry points, all defined in HeapStackCheck.hc */
264
265 RTS_RET(stg_enter);
266 RTS_RET(stg_enter_checkbh);
267
268 RTS_RET(stg_gc_void);
269
270 RTS_FUN_DECL(__stg_gc_enter_1);
271 RTS_FUN_DECL(stg_gc_noregs);
272
273 RTS_RET(stg_gc_unpt_r1);
274 RTS_FUN_DECL(stg_gc_unpt_r1);
275
276 RTS_RET(stg_gc_unbx_r1);
277 RTS_FUN_DECL(stg_gc_unbx_r1);
278
279 RTS_RET(stg_gc_f1);
280 RTS_FUN_DECL(stg_gc_f1);
281
282 RTS_RET(stg_gc_d1);
283 RTS_FUN_DECL(stg_gc_d1);
284
285 RTS_RET(stg_gc_l1);
286 RTS_FUN_DECL(stg_gc_l1);
287
288 RTS_RET(stg_gc_fun);
289 RTS_FUN_DECL(__stg_gc_fun);
290
291 RTS_RET(stg_gc_gen);
292 RTS_FUN_DECL(stg_gc_gen);
293
294 RTS_RET(stg_ut_1_0_unreg);
295
296 RTS_FUN_DECL(stg_gc_gen_hp);
297 RTS_FUN_DECL(stg_gc_ut);
298 RTS_FUN_DECL(stg_gen_yield);
299 RTS_FUN_DECL(stg_yield_noregs);
300 RTS_FUN_DECL(stg_yield_to_interpreter);
301 RTS_FUN_DECL(stg_gen_block);
302 RTS_FUN_DECL(stg_block_noregs);
303 RTS_FUN_DECL(stg_block_1);
304 RTS_FUN_DECL(stg_block_blackhole);
305 RTS_FUN_DECL(stg_block_blackhole_finally);
306 RTS_FUN_DECL(stg_block_takemvar);
307 RTS_RET(stg_block_takemvar);
308 RTS_FUN_DECL(stg_block_putmvar);
309 RTS_RET(stg_block_putmvar);
310 #ifdef mingw32_HOST_OS
311 RTS_FUN_DECL(stg_block_async);
312 RTS_RET(stg_block_async);
313 RTS_FUN_DECL(stg_block_async_void);
314 RTS_RET(stg_block_async_void);
315 #endif
316 RTS_FUN_DECL(stg_block_stmwait);
317 RTS_FUN_DECL(stg_block_throwto);
318 RTS_RET(stg_block_throwto);
319
320 /* Entry/exit points from StgStartup.cmm */
321
322 RTS_RET(stg_stop_thread);
323
324 RTS_FUN_DECL(stg_returnToStackTop);
325 RTS_FUN_DECL(stg_returnToSched);
326 RTS_FUN_DECL(stg_returnToSchedNotPaused);
327 RTS_FUN_DECL(stg_returnToSchedButFirst);
328 RTS_FUN_DECL(stg_threadFinished);
329
330 RTS_FUN_DECL(stg_init_finish);
331 RTS_FUN_DECL(stg_init);
332
333 RTS_FUN_DECL(StgReturn);
334
335 /* -----------------------------------------------------------------------------
336    PrimOps
337    -------------------------------------------------------------------------- */
338
339 RTS_FUN_DECL(stg_plusIntegerzh);
340 RTS_FUN_DECL(stg_minusIntegerzh);
341 RTS_FUN_DECL(stg_timesIntegerzh);
342 RTS_FUN_DECL(stg_gcdIntegerzh);
343 RTS_FUN_DECL(stg_quotRemIntegerzh);
344 RTS_FUN_DECL(stg_quotIntegerzh);
345 RTS_FUN_DECL(stg_remIntegerzh);
346 RTS_FUN_DECL(stg_divExactIntegerzh);
347 RTS_FUN_DECL(stg_divModIntegerzh);
348
349 RTS_FUN_DECL(stg_cmpIntegerIntzh);
350 RTS_FUN_DECL(stg_cmpIntegerzh);
351 RTS_FUN_DECL(stg_integer2Intzh);
352 RTS_FUN_DECL(stg_integer2Wordzh);
353 RTS_FUN_DECL(stg_gcdIntegerIntzh);
354 RTS_FUN_DECL(stg_gcdIntzh);
355
356 RTS_FUN_DECL(stg_int2Integerzh);
357 RTS_FUN_DECL(stg_word2Integerzh);
358
359 RTS_FUN_DECL(stg_decodeFloatzuIntzh);
360 RTS_FUN_DECL(stg_decodeDoublezh);
361 RTS_FUN_DECL(stg_decodeDoublezu2Intzh);
362
363 RTS_FUN_DECL(stg_andIntegerzh);
364 RTS_FUN_DECL(stg_orIntegerzh);
365 RTS_FUN_DECL(stg_xorIntegerzh);
366 RTS_FUN_DECL(stg_complementIntegerzh);
367
368 #if SIZEOF_HSINT == 4
369
370 RTS_FUN_DECL(stg_int64ToIntegerzh);
371 RTS_FUN_DECL(stg_word64ToIntegerzh);
372
373 #endif
374
375 RTS_FUN_DECL(stg_unsafeThawArrayzh);
376 RTS_FUN_DECL(stg_newByteArrayzh);
377 RTS_FUN_DECL(stg_newPinnedByteArrayzh);
378 RTS_FUN_DECL(stg_newAlignedPinnedByteArrayzh);
379 RTS_FUN_DECL(stg_newArrayzh);
380
381 RTS_FUN_DECL(stg_newMutVarzh);
382 RTS_FUN_DECL(stg_atomicModifyMutVarzh);
383
384 RTS_FUN_DECL(stg_isEmptyMVarzh);
385 RTS_FUN_DECL(stg_newMVarzh);
386 RTS_FUN_DECL(stg_takeMVarzh);
387 RTS_FUN_DECL(stg_putMVarzh);
388 RTS_FUN_DECL(stg_tryTakeMVarzh);
389 RTS_FUN_DECL(stg_tryPutMVarzh);
390
391 RTS_FUN_DECL(stg_waitReadzh);
392 RTS_FUN_DECL(stg_waitWritezh);
393 RTS_FUN_DECL(stg_delayzh);
394 #ifdef mingw32_HOST_OS
395 RTS_FUN_DECL(stg_asyncReadzh);
396 RTS_FUN_DECL(stg_asyncWritezh);
397 RTS_FUN_DECL(stg_asyncDoProczh);
398 #endif
399
400 RTS_FUN_DECL(stg_catchzh);
401 RTS_FUN_DECL(stg_raisezh);
402 RTS_FUN_DECL(stg_raiseIOzh);
403
404 RTS_FUN_DECL(stg_makeStableNamezh);
405 RTS_FUN_DECL(stg_makeStablePtrzh);
406 RTS_FUN_DECL(stg_deRefStablePtrzh);
407
408 RTS_FUN_DECL(stg_forkzh);
409 RTS_FUN_DECL(stg_forkOnzh);
410 RTS_FUN_DECL(stg_yieldzh);
411 RTS_FUN_DECL(stg_killThreadzh);
412 RTS_FUN_DECL(stg_asyncExceptionsBlockedzh);
413 RTS_FUN_DECL(stg_blockAsyncExceptionszh);
414 RTS_FUN_DECL(stg_unblockAsyncExceptionszh);
415 RTS_FUN_DECL(stg_myThreadIdzh);
416 RTS_FUN_DECL(stg_labelThreadzh);
417 RTS_FUN_DECL(stg_isCurrentThreadBoundzh);
418 RTS_FUN_DECL(stg_threadStatuszh);
419
420 RTS_FUN_DECL(stg_mkWeakzh);
421 RTS_FUN_DECL(stg_mkWeakForeignzh);
422 RTS_FUN_DECL(stg_mkWeakForeignEnvzh);
423 RTS_FUN_DECL(stg_finalizzeWeakzh);
424 RTS_FUN_DECL(stg_deRefWeakzh);
425
426 RTS_FUN_DECL(stg_newBCOzh);
427 RTS_FUN_DECL(stg_mkApUpd0zh);
428
429 RTS_FUN_DECL(stg_retryzh);
430 RTS_FUN_DECL(stg_catchRetryzh);
431 RTS_FUN_DECL(stg_catchSTMzh);
432 RTS_FUN_DECL(stg_atomicallyzh);
433 RTS_FUN_DECL(stg_newTVarzh);
434 RTS_FUN_DECL(stg_readTVarzh);
435 RTS_FUN_DECL(stg_readTVarIOzh);
436 RTS_FUN_DECL(stg_writeTVarzh);
437 RTS_FUN_DECL(stg_checkzh);
438
439 RTS_FUN_DECL(stg_unpackClosurezh);
440 RTS_FUN_DECL(stg_getApStackValzh);
441 RTS_FUN_DECL(stg_getSparkzh);
442
443 RTS_FUN_DECL(stg_noDuplicatezh);
444
445 RTS_FUN_DECL(stg_traceCcszh);
446 RTS_FUN_DECL(stg_traceEventzh);
447
448 /* Other misc stuff */
449 // See wiki:Commentary/Compiler/Backends/PprC#Prototypes
450
451 #if IN_STG_CODE && !IN_STGCRUN
452
453 // Interpreter.c
454 extern StgWord rts_stop_next_breakpoint[];
455 extern StgWord rts_stop_on_exception[];
456 extern StgWord rts_breakpoint_io_action[];
457
458 // Schedule.c
459 extern StgWord RTS_VAR(blocked_queue_hd), RTS_VAR(blocked_queue_tl);
460 extern StgWord RTS_VAR(sleeping_queue);
461 extern StgWord RTS_VAR(blackhole_queue);
462 extern StgWord RTS_VAR(sched_mutex);
463
464 // Apply.cmm
465 // canned bitmap for each arg type
466 extern StgWord stg_arg_bitmaps[];
467 extern StgWord stg_ap_stack_entries[];
468 extern StgWord stg_stack_save_entries[];
469
470 // Storage.c
471 extern unsigned int RTS_VAR(g0);
472 extern unsigned int RTS_VAR(alloc_blocks_lim);
473 extern StgWord RTS_VAR(weak_ptr_list);
474 extern StgWord RTS_VAR(atomic_modify_mutvar_mutex);
475
476 // RtsFlags
477 extern StgWord RTS_VAR(RtsFlags); // bogus type
478
479 // Stable.c
480 extern StgWord RTS_VAR(stable_ptr_table);
481
482 // Profiling.c
483 extern unsigned int RTS_VAR(era);
484 extern StgWord      RTS_VAR(CCCS);              /* current CCS */
485 extern unsigned int RTS_VAR(entering_PAP);
486 extern StgWord      RTS_VAR(CC_LIST);               /* registered CC list */
487 extern StgWord      RTS_VAR(CCS_LIST);         /* registered CCS list */
488 extern unsigned int RTS_VAR(CC_ID);     /* global ids */
489 extern unsigned int RTS_VAR(CCS_ID);
490
491 #endif
492
493 #endif /* STGMISCCLOSURES_H */