diff options
author | Björn Gustavsson <[email protected]> | 2011-03-18 08:02:34 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-08-16 08:58:46 +0200 |
commit | 5cdd2f9d7c1d1846ee09caae3b8dfdb83ef76405 (patch) | |
tree | 333c5d2e074b234c9645c8c1cc48e378991a52ee /lib/debugger/src/dbg_iserver.erl | |
parent | c3d796e5080a44da039bdfb42fbfcfc1e757397e (diff) | |
download | otp-5cdd2f9d7c1d1846ee09caae3b8dfdb83ef76405.tar.gz otp-5cdd2f9d7c1d1846ee09caae3b8dfdb83ef76405.tar.bz2 otp-5cdd2f9d7c1d1846ee09caae3b8dfdb83ef76405.zip |
Remove the special handling of Mod:module_info/{0,1}
Many releases ago, Mod:module_info/{0,1} used to be specially
handled in the BEAM loader. The debugger has similar special
handling.
In the current implementation, Mod:module_info/{0,1} are ordinary
functions that call special BIFs to do their work.
Therefore, remove the special handling of Mod:module_info/{0,1}
in the debugger.
Diffstat (limited to 'lib/debugger/src/dbg_iserver.erl')
-rw-r--r-- | lib/debugger/src/dbg_iserver.erl | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/debugger/src/dbg_iserver.erl b/lib/debugger/src/dbg_iserver.erl index 212bc2b8ab..55ac1cef94 100644 --- a/lib/debugger/src/dbg_iserver.erl +++ b/lib/debugger/src/dbg_iserver.erl @@ -97,13 +97,10 @@ ensure_started() -> %% %% Key Value %% --- ----- -%% attributes Attr -%% exports Exp %% defs [] %% mod_bin Binary %% mod_raw Raw Binary %% mod_file File -%% module Mod %% {Mod,Name,Arity,Exported} Cs %% {'fun',Mod,Index,Uniq} {Name,Arity,Cs} %% Line {Pos,PosNL} |