diff options
author | Sverker Eriksson <[email protected]> | 2018-01-04 20:39:11 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2018-01-04 20:39:11 +0100 |
commit | 19f84054b621aaa9ad05748cc72057726faeda01 (patch) | |
tree | 4db33fa11b25387cdac684e3ccd71bfce17ed18b /erts/emulator/beam/global.h | |
parent | 93042b54da6a576b187bfb7b2222fc8a5a4d4f12 (diff) | |
download | otp-19f84054b621aaa9ad05748cc72057726faeda01.tar.gz otp-19f84054b621aaa9ad05748cc72057726faeda01.tar.bz2 otp-19f84054b621aaa9ad05748cc72057726faeda01.zip |
erts: Refactor ProcBin creation
into utility functions.
Diffstat (limited to 'erts/emulator/beam/global.h')
-rw-r--r-- | erts/emulator/beam/global.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/beam/global.h b/erts/emulator/beam/global.h index 9505942307..87777d14e9 100644 --- a/erts/emulator/beam/global.h +++ b/erts/emulator/beam/global.h @@ -867,6 +867,7 @@ Eterm erts_new_heap_binary(Process *p, byte *buf, int len, byte** datap); Eterm erts_new_mso_binary(Process*, byte*, Uint); Eterm new_binary(Process*, byte*, Uint); Eterm erts_realloc_binary(Eterm bin, size_t size); +Eterm erts_build_proc_bin(ErlOffHeap*, Eterm*, Binary*); /* erl_bif_info.c */ |