| OLD | NEW |
| 1 /* This Source Code Form is subject to the terms of the Mozilla Public | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
| 2 * License, v. 2.0. If a copy of the MPL was not distributed with this | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
| 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
| 4 | 4 |
| 5 #ifdef DEBUG | 5 #ifdef DEBUG |
| 6 static const char CVS_ID[] = "@(#) $RCSfile: arena.c,v $ $Revision: 1.15 $ $Date
: 2012/07/06 18:19:32 $"; | 6 static const char CVS_ID[] = "@(#) $RCSfile: arena.c,v $ $Revision: 1.14 $ $Date
: 2012/04/25 14:49:25 $"; |
| 7 #endif /* DEBUG */ | 7 #endif /* DEBUG */ |
| 8 | 8 |
| 9 /* | 9 /* |
| 10 * arena.c | 10 * arena.c |
| 11 * | 11 * |
| 12 * This contains the implementation of NSS's thread-safe arenas. | 12 * This contains the implementation of NSS's thread-safe arenas. |
| 13 */ | 13 */ |
| 14 | 14 |
| 15 #ifndef BASE_H | 15 #ifndef BASE_H |
| 16 #include "base.h" | 16 #include "base.h" |
| (...skipping 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1117 | 1117 |
| 1118 PRStatus | 1118 PRStatus |
| 1119 nssArena_Shutdown(void) | 1119 nssArena_Shutdown(void) |
| 1120 { | 1120 { |
| 1121 PRStatus rv = PR_SUCCESS; | 1121 PRStatus rv = PR_SUCCESS; |
| 1122 #ifdef DEBUG | 1122 #ifdef DEBUG |
| 1123 rv = nssPointerTracker_finalize(&arena_pointer_tracker); | 1123 rv = nssPointerTracker_finalize(&arena_pointer_tracker); |
| 1124 #endif | 1124 #endif |
| 1125 return rv; | 1125 return rv; |
| 1126 } | 1126 } |
| OLD | NEW |