aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/erl_bif_info.c
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2015-09-04 18:45:06 +0200
committerSverker Eriksson <[email protected]>2015-09-11 16:42:49 +0200
commitada8342bedf8d4b84d4c3c10fcfc7919e532fd8c (patch)
treefe32a650f4ec4f49b057249ba02aa8caec0c57a6 /erts/emulator/beam/erl_bif_info.c
parent1fd4809777931a4dc166fd9f1b552317a385cd62 (diff)
downloadotp-ada8342bedf8d4b84d4c3c10fcfc7919e532fd8c.tar.gz
otp-ada8342bedf8d4b84d4c3c10fcfc7919e532fd8c.tar.bz2
otp-ada8342bedf8d4b84d4c3c10fcfc7919e532fd8c.zip
erts: Add new allocator LITERAL
Diffstat (limited to 'erts/emulator/beam/erl_bif_info.c')
-rw-r--r--erts/emulator/beam/erl_bif_info.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_bif_info.c b/erts/emulator/beam/erl_bif_info.c
index 9a132ee007..79ccf8db64 100644
--- a/erts/emulator/beam/erl_bif_info.c
+++ b/erts/emulator/beam/erl_bif_info.c
@@ -4321,7 +4321,7 @@ static void os_info_init(void)
os_flavor(buf, 1024);
flav = erts_atom_put((byte *) buf, strlen(buf), ERTS_ATOM_ENC_LATIN1, 1);
erts_free(ERTS_ALC_T_TMP, (void *) buf);
- hp = erts_alloc(ERTS_ALC_T_LL_TEMP_TERM, (3+4)*sizeof(Eterm));
+ hp = erts_alloc(ERTS_ALC_T_LITERAL, (3+4)*sizeof(Eterm));
os_type_tuple = TUPLE2(hp, type, flav);
hp += 3;
os_version(&major, &minor, &build);