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

Side by Side Diff: native_client_sdk/src/libraries/xray/parsesymbols.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 /* XRay -- a simple profiler for Native Client */ 6 /* XRay -- a simple profiler for Native Client */
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 <unistd.h> 12 #include <unistd.h>
14 #include "xray/xray_priv.h" 13 #include "xray/xray_priv.h"
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 } else { 87 } else {
89 in_text = false; 88 in_text = false;
90 in_link_once = false; 89 in_link_once = false;
91 } 90 }
92 } 91 }
93 fclose(f); 92 fclose(f);
94 printf("XRay: parsed %d symbols into symbol table\n", num_symbols); 93 printf("XRay: parsed %d symbols into symbol table\n", num_symbols);
95 } 94 }
96 95
97 #endif // XRAY 96 #endif // XRAY
OLDNEW
« no previous file with comments | « native_client_sdk/src/libraries/xray/hashtable.c ('k') | native_client_sdk/src/libraries/xray/report.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698