blob: d4fe0092dac25f7016d6a5468af055006d69fe7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* ---------------------------------------------------------------------------
*
* (c) The GHC Team, 2020
*
* Continuations
*
* --------------------------------------------------------------------------*/
#pragma once
#include "BeginPrivate.h"
StgClosure *captureContinuationAndAbort(Capability *cap, StgTSO *tso, StgPromptTag prompt_tag);
#include "EndPrivate.h"
|