diff options
author | Patrik Nyblom <[email protected]> | 2010-04-16 18:11:49 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-05-17 15:51:49 +0200 |
commit | ba8c9c7c1594b4870936814caf3520a0f4e312f7 (patch) | |
tree | d35b79f425389ed177cdb9501ee6916d33ddcdf6 /erts/emulator/beam/erl_init.c | |
parent | e0c4c2867c20368c5b5d88cbbf92da7b7a3f386e (diff) | |
download | otp-ba8c9c7c1594b4870936814caf3520a0f4e312f7.tar.gz otp-ba8c9c7c1594b4870936814caf3520a0f4e312f7.tar.bz2 otp-ba8c9c7c1594b4870936814caf3520a0f4e312f7.zip |
Teach BIF's binary:match/matches interrupting/restarting
Add Boyer More implementation of binary:matches.
Cleanup and removed unused code.
Diffstat (limited to 'erts/emulator/beam/erl_init.c')
-rw-r--r-- | erts/emulator/beam/erl_init.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_init.c b/erts/emulator/beam/erl_init.c index e63ec8a3cc..f2e71ae98d 100644 --- a/erts/emulator/beam/erl_init.c +++ b/erts/emulator/beam/erl_init.c @@ -281,6 +281,7 @@ erl_init(void) init_load(); erts_init_bif(); erts_init_bif_chksum(); + erts_init_bif_binary(); erts_init_bif_re(); erts_init_unicode(); /* after RE to get access to PCRE unicode */ erts_delay_trap = erts_export_put(am_erlang, am_delay_trap, 2); |