blob: ab85ead852e5baabff57f4e836a66364243099d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* ----------------------------------------------------------------------------
*
* (c) The GHC Team, 2013-
*
* Check whether dynamically-loaded object code can be safely
* unloaded, by searching for references to it from the heap and RTS
* data structures.
*
* --------------------------------------------------------------------------*/
#pragma once
#include "BeginPrivate.h"
void checkUnload (StgClosure *static_objects);
#include "EndPrivate.h"
|