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 | /* |
michael@0 | 2 | * Copyright (c) 2004-2010 Alex Pankratov. All rights reserved. |
michael@0 | 3 | * |
michael@0 | 4 | * Hierarchical memory allocator, 1.2.1 |
michael@0 | 5 | * http://swapped.cc/halloc |
michael@0 | 6 | */ |
michael@0 | 7 | |
michael@0 | 8 | /* |
michael@0 | 9 | * The program is distributed under terms of BSD license. |
michael@0 | 10 | * You can obtain the copy of the license by visiting: |
michael@0 | 11 | * |
michael@0 | 12 | * http://www.opensource.org/licenses/bsd-license.php |
michael@0 | 13 | */ |
michael@0 | 14 | |
michael@0 | 15 | #ifndef _LIBP_ALIGN_H_ |
michael@0 | 16 | #define _LIBP_ALIGN_H_ |
michael@0 | 17 | |
michael@0 | 18 | /* |
michael@0 | 19 | * a type with the most strict alignment requirements |
michael@0 | 20 | */ |
michael@0 | 21 | union max_align |
michael@0 | 22 | { |
michael@0 | 23 | char c; |
michael@0 | 24 | short s; |
michael@0 | 25 | long l; |
michael@0 | 26 | int i; |
michael@0 | 27 | float f; |
michael@0 | 28 | double d; |
michael@0 | 29 | void * v; |
michael@0 | 30 | void (*q)(void); |
michael@0 | 31 | }; |
michael@0 | 32 | |
michael@0 | 33 | typedef union max_align max_align_t; |
michael@0 | 34 | |
michael@0 | 35 | #endif |
michael@0 | 36 |