diff options
author | Björn-Egil Dahlberg <[email protected]> | 2012-07-17 12:19:40 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2012-07-19 20:22:52 +0200 |
commit | 4cfa7bf2cb71547a267bb256b186a9432c278002 (patch) | |
tree | 49461cc801e394d7c87187db485335cd4baf8d01 /erts/emulator/beam/erl_alloc.c | |
parent | eb510f38e842cb94d24ba8a5ab4a3833aa24428e (diff) | |
download | otp-4cfa7bf2cb71547a267bb256b186a9432c278002.tar.gz otp-4cfa7bf2cb71547a267bb256b186a9432c278002.tar.bz2 otp-4cfa7bf2cb71547a267bb256b186a9432c278002.zip |
erts: Remove VxWorks from allocators
Diffstat (limited to 'erts/emulator/beam/erl_alloc.c')
-rw-r--r-- | erts/emulator/beam/erl_alloc.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/erts/emulator/beam/erl_alloc.c b/erts/emulator/beam/erl_alloc.c index 918a800555..ba73ca6da7 100644 --- a/erts/emulator/beam/erl_alloc.c +++ b/erts/emulator/beam/erl_alloc.c @@ -2300,11 +2300,7 @@ erts_allocated_areas(int *print_to_p, void *print_to_arg, void *proc) values[i].name = "static"; values[i].ui[0] = erts_max_ports*sizeof(Port) /* Port table */ - + erts_timer_wheel_memory_size() /* Timer wheel */ -#ifdef SYS_TMP_BUF_SIZE - + SYS_TMP_BUF_SIZE /* tmp_buf in sys on vxworks & ose */ -#endif - ; + + erts_timer_wheel_memory_size(); /* Timer wheel */ i++; erts_atom_get_text_space_sizes(&reserved_atom_space, &atom_space); |