diff options
author | Björn Gustavsson <[email protected]> | 2011-02-17 16:27:11 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-08-16 08:58:50 +0200 |
commit | 70d016cf227dfae7f77a57349be09cd57dba18d6 (patch) | |
tree | 71dedcb46e10f9d2b710a3c16dd06e97de4c4b3d /erts/emulator/beam/beam_load.h | |
parent | be04820c070d01d7565b936fa14efc2941055e0b (diff) | |
download | otp-70d016cf227dfae7f77a57349be09cd57dba18d6.tar.gz otp-70d016cf227dfae7f77a57349be09cd57dba18d6.tar.bz2 otp-70d016cf227dfae7f77a57349be09cd57dba18d6.zip |
BEAM loader: Load the line table
Diffstat (limited to 'erts/emulator/beam/beam_load.h')
-rw-r--r-- | erts/emulator/beam/beam_load.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/erts/emulator/beam/beam_load.h b/erts/emulator/beam/beam_load.h index 26e3054c4b..9d4a60fed1 100644 --- a/erts/emulator/beam/beam_load.h +++ b/erts/emulator/beam/beam_load.h @@ -108,6 +108,11 @@ extern Uint erts_total_code_size; #define MI_ON_LOAD_FUNCTION_PTR 10 /* + * Pointer to the line table (or NULL if none). + */ +#define MI_LINE_TABLE 11 + +/* * Start of function pointer table. This table contains pointers to * all functions in the module plus an additional pointer just beyond * the end of the last function. @@ -116,5 +121,5 @@ extern Uint erts_total_code_size; * this table. */ -#define MI_FUNCTIONS 11 +#define MI_FUNCTIONS 12 #endif /* _BEAM_LOAD_H */ |