diff options
author | Sverker Eriksson <[email protected]> | 2014-08-29 16:06:20 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2014-10-24 18:12:16 +0200 |
commit | e45a4a8a3797a637a23ad5d660138c021f3ba1b1 (patch) | |
tree | 77966b56c5f9a9a09087558fc0bd0fa65916d43c /erts/emulator/beam/global.h | |
parent | a70f0ce9b34e4db61dacb8db24f9ab5671ed4c8a (diff) | |
download | otp-e45a4a8a3797a637a23ad5d660138c021f3ba1b1.tar.gz otp-e45a4a8a3797a637a23ad5d660138c021f3ba1b1.tar.bz2 otp-e45a4a8a3797a637a23ad5d660138c021f3ba1b1.zip |
erts: Make hipe_{un}reserve_beam_trap_frame INLINE
Diffstat (limited to 'erts/emulator/beam/global.h')
-rw-r--r-- | erts/emulator/beam/global.h | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/erts/emulator/beam/global.h b/erts/emulator/beam/global.h index 891046a8b5..da9f029a9f 100644 --- a/erts/emulator/beam/global.h +++ b/erts/emulator/beam/global.h @@ -41,6 +41,7 @@ #include "error.h" #include "erl_utils.h" #include "erl_port.h" +#include "erl_gc.h" struct enif_environment_t /* ErlNifEnv */ { @@ -809,23 +810,6 @@ void MD5Init(MD5_CTX *); void MD5Update(MD5_CTX *, unsigned char *, unsigned int); void MD5Final(unsigned char [16], MD5_CTX *); -/* ggc.c */ - -void erts_gc_info(ErtsGCInfo *gcip); -void erts_init_gc(void); -int erts_garbage_collect(Process*, int, Eterm*, int); -void erts_garbage_collect_hibernate(Process* p); -Eterm erts_gc_after_bif_call(Process* p, Eterm result, Eterm* regs, Uint arity); -void erts_garbage_collect_literals(Process* p, Eterm* literals, - Uint lit_size, - struct erl_off_heap_header* oh); -Uint erts_next_heap_size(Uint, Uint); -Eterm erts_heap_sizes(Process* p); - -void erts_offset_off_heap(ErlOffHeap *, Sint, Eterm*, Eterm*); -void erts_offset_heap_ptr(Eterm*, Uint, Sint, Eterm*, Eterm*); -void erts_offset_heap(Eterm*, Uint, Sint, Eterm*, Eterm*); -void erts_free_heap_frags(Process* p); /* io.c */ |