blob: a6b670e6f12743812419ce97d6e74f4ef0c0976c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/* ---------------------------------------------------------------------------
*
* (c) The GHC Team, 2015-2016
*
* A pool of libdw sessions
*
* --------------------------------------------------------------------------*/
#ifndef LIBDW_POOL_H
#define LIBDW_POOL_H
#include "BeginPrivate.h"
#include "Rts.h"
#include "Libdw.h"
#ifdef USE_LIBDW
/* Initialize the pool */
void libdwPoolInit(void);
#else
INLINE_HEADER void libdwPoolInit(void) {}
#endif /* USE_LIBDW */
#include "EndPrivate.h"
#endif /* LIBDW_POOL_H */
|