blob: 650b1f5fedc81132413c935c5ebe97c3b186cec8 (
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
|
/* -----------------------------------------------------------------------------
*
* (c) The GHC Team, 2000-2015
*
* RTS Symbols
*
* ---------------------------------------------------------------------------*/
#pragma once
#include "ghcautoconf.h"
#include "LinkerInternals.h"
#include <stdbool.h>
#if defined(LEADING_UNDERSCORE)
#define MAYBE_LEADING_UNDERSCORE_STR(s) ("_" s)
#else
#define MAYBE_LEADING_UNDERSCORE_STR(s) (s)
#endif
typedef struct _RtsSymbolVal {
const SymbolName* lbl;
SymbolAddr* addr;
bool weak;
} RtsSymbolVal;
extern RtsSymbolVal rtsSyms[];
|