diff options
author | Sverker Eriksson <[email protected]> | 2013-09-25 17:23:55 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2013-09-30 17:45:47 +0200 |
commit | d6d531012957f8e3315d44c2bcb10938ab5d6e72 (patch) | |
tree | ad8b22e509b8358437d76cccdec4091293c5d2ac /erts/emulator/beam/erl_utils.h | |
parent | 98c01224ff2c0dacc97613c080cc0f7268c6b2f1 (diff) | |
download | otp-d6d531012957f8e3315d44c2bcb10938ab5d6e72.tar.gz otp-d6d531012957f8e3315d44c2bcb10938ab5d6e72.tar.bz2 otp-d6d531012957f8e3315d44c2bcb10938ab5d6e72.zip |
erts: Rename erts_bld_atom_uint_2tup_list to *_uword_*
and change from Uint to UWord values
Diffstat (limited to 'erts/emulator/beam/erl_utils.h')
-rw-r--r-- | erts/emulator/beam/erl_utils.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/erts/emulator/beam/erl_utils.h b/erts/emulator/beam/erl_utils.h index 80d29d554a..f85c7410c4 100644 --- a/erts/emulator/beam/erl_utils.h +++ b/erts/emulator/beam/erl_utils.h @@ -1,7 +1,7 @@ /* * %CopyrightBegin% * - * Copyright Ericsson AB 2012. All Rights Reserved. + * Copyright Ericsson AB 2012-2013. All Rights Reserved. * * The contents of this file are subject to the Erlang Public License, * Version 1.1, (the "License"); you may not use this file except in @@ -175,8 +175,8 @@ Eterm erts_bld_list(Uint **hpp, Uint *szp, Sint length, Eterm terms[]); Eterm erts_bld_2tup_list(Uint **hpp, Uint *szp, Sint length, Eterm terms1[], Uint terms2[]); Eterm -erts_bld_atom_uint_2tup_list(Uint **hpp, Uint *szp, - Sint length, Eterm atoms[], Uint uints[]); +erts_bld_atom_uword_2tup_list(Uint **hpp, Uint *szp, + Sint length, Eterm atoms[], UWord uints[]); Eterm erts_bld_atom_2uint_3tup_list(Uint **hpp, Uint *szp, Sint length, Eterm atoms[], Uint uints1[], Uint uints2[]); |