| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |