Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
michael@0 | 1 | ; This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | ; License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | ; file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 4 | |
michael@0 | 5 | LIBRARY mozglue.dll |
michael@0 | 6 | |
michael@0 | 7 | EXPORTS |
michael@0 | 8 | #ifdef MOZ_MEMORY |
michael@0 | 9 | ; symbols that are actually useful |
michael@0 | 10 | #ifdef MOZ_REPLACE_MALLOC |
michael@0 | 11 | malloc=malloc_impl |
michael@0 | 12 | calloc=calloc_impl |
michael@0 | 13 | realloc=realloc_impl |
michael@0 | 14 | free=free_impl |
michael@0 | 15 | posix_memalign=posix_memalign_impl |
michael@0 | 16 | malloc_usable_size=malloc_usable_size_impl |
michael@0 | 17 | malloc_good_size=malloc_good_size_impl |
michael@0 | 18 | #else |
michael@0 | 19 | malloc=je_malloc |
michael@0 | 20 | calloc=je_calloc |
michael@0 | 21 | realloc=je_realloc |
michael@0 | 22 | free=je_free |
michael@0 | 23 | posix_memalign=je_posix_memalign |
michael@0 | 24 | malloc_usable_size=je_malloc_usable_size |
michael@0 | 25 | malloc_good_size=je_malloc_good_size |
michael@0 | 26 | #endif |
michael@0 | 27 | strndup=wrap_strndup |
michael@0 | 28 | strdup=wrap_strdup |
michael@0 | 29 | _strdup=wrap_strdup |
michael@0 | 30 | wcsdup=wrap_wcsdup |
michael@0 | 31 | _wcsdup=wrap_wcsdup |
michael@0 | 32 | jemalloc_stats |
michael@0 | 33 | jemalloc_free_dirty_pages |
michael@0 | 34 | ; A hack to work around the CRT (see giant comment in Makefile.in) |
michael@0 | 35 | frex=dumb_free_thunk |
michael@0 | 36 | #endif |