diff options
author | Rickard Green <[email protected]> | 2018-04-13 13:36:29 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2018-04-13 13:36:29 +0200 |
commit | fa26cb5a3f7550d5779dce7de748bf91a4bc405e (patch) | |
tree | 75d1aa05f03495479348d5f957e4931118b69b2a /erts/emulator/beam/global.h | |
parent | 30fd5b9e98268305762b9647d1bf40df665ae54d (diff) | |
parent | 9f8a402cc3e49313089bb9e22bc625f07beea4ca (diff) | |
download | otp-fa26cb5a3f7550d5779dce7de748bf91a4bc405e.tar.gz otp-fa26cb5a3f7550d5779dce7de748bf91a4bc405e.tar.bz2 otp-fa26cb5a3f7550d5779dce7de748bf91a4bc405e.zip |
Merge branch 'rickard/process_info/OTP-14966'
* rickard/process_info/OTP-14966:
New process_info() implementation using signals
Diffstat (limited to 'erts/emulator/beam/global.h')
-rw-r--r-- | erts/emulator/beam/global.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/erts/emulator/beam/global.h b/erts/emulator/beam/global.h index 7724231cd5..256670ff22 100644 --- a/erts/emulator/beam/global.h +++ b/erts/emulator/beam/global.h @@ -860,6 +860,8 @@ void erts_emasculate_writable_binary(ProcBin* pb); 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_heap_factory_new_binary(ErtsHeapFactory *hfact, byte *buf, + Uint len, Uint reserve_size); Eterm erts_realloc_binary(Eterm bin, size_t size); Eterm erts_build_proc_bin(ErlOffHeap*, Eterm*, Binary*); |