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

Side by Side Diff: native_client_sdk/src/libraries/xray/hashtable.c

Issue 19673003: [NaCl SDK] Consistent use of copyright header. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months 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 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file. */
4 */
5 4
6 5
7 /* Hashtable for XRay */ 6 /* Hashtable for XRay */
8 7
9 #include <stdint.h> 8 #include <stdint.h>
10 #include <stdio.h> 9 #include <stdio.h>
11 #include <stdlib.h> 10 #include <stdlib.h>
12 #include <string.h> 11 #include <string.h>
13 #include "xray/xray_priv.h" 12 #include "xray/xray_priv.h"
14 13
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 void XRayHashTableFree(struct XRayHashTable* table) { 196 void XRayHashTableFree(struct XRayHashTable* table) {
198 XRayFree(table->array); 197 XRayFree(table->array);
199 table->capacity = 0; 198 table->capacity = 0;
200 table->count = 0; 199 table->count = 0;
201 table->array = NULL; 200 table->array = NULL;
202 XRayFree(table); 201 XRayFree(table);
203 } 202 }
204 203
205 #endif /* XRAY */ 204 #endif /* XRAY */
206 205
OLDNEW
« no previous file with comments | « native_client_sdk/src/libraries/xray/demangle.c ('k') | native_client_sdk/src/libraries/xray/parsesymbols.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698