summaryrefslogtreecommitdiff
path: root/graphics/asymptote/LspCpp/src/jsonrpc/GCThreadContext.cpp
blob: f1420e964be74d62fdf22e16b46a3b39ee2190bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "LibLsp/JsonRpc/GCThreadContext.h"
#include <iostream>

GCThreadContext::GCThreadContext()
{
#ifdef USEGC
    GC_get_stack_base(&gsb);
    GC_register_my_thread(&gsb);
#endif
}

GCThreadContext::~GCThreadContext()
{
#ifdef USEGC
    GC_unregister_my_thread();
#endif
}