Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(131)

Side by Side Diff: mozilla/security/nss/lib/base/arena.c

Issue 11359091: Update NSS to NSS 3.14 pre-release snapshot 2012-06-26 01:00:00 PDT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Remove the RCS Id from nss-shvfy-const.patch Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698