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 | |
6 static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$"; | |
7 #endif /* DEBUG */ | |
8 | |
9 /* | 5 /* |
10 * arena.c | 6 * arena.c |
11 * | 7 * |
12 * This contains the implementation of NSS's thread-safe arenas. | 8 * This contains the implementation of NSS's thread-safe arenas. |
13 */ | 9 */ |
14 | 10 |
15 #ifndef BASE_H | 11 #ifndef BASE_H |
16 #include "base.h" | 12 #include "base.h" |
17 #endif /* BASE_H */ | 13 #endif /* BASE_H */ |
18 | 14 |
(...skipping 1190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1209 | 1205 |
1210 PRStatus | 1206 PRStatus |
1211 nssArena_Shutdown(void) | 1207 nssArena_Shutdown(void) |
1212 { | 1208 { |
1213 PRStatus rv = PR_SUCCESS; | 1209 PRStatus rv = PR_SUCCESS; |
1214 #ifdef DEBUG | 1210 #ifdef DEBUG |
1215 rv = nssPointerTracker_finalize(&arena_pointer_tracker); | 1211 rv = nssPointerTracker_finalize(&arena_pointer_tracker); |
1216 #endif | 1212 #endif |
1217 return rv; | 1213 return rv; |
1218 } | 1214 } |
OLD | NEW |