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

Side by Side Diff: chrome/test/pyautolib/asan_stub.c

Issue 11275285: Updating ASAN stub with new API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // 4 //
5 // Fake Address Sanitizer run-time support. 5 // Fake Address Sanitizer run-time support.
6 // Enough for programs to link and run, but will not find any errors. 6 // Enough for programs to link and run, but will not find any errors.
7 // Also, linking this to shared libraries voids the warranty. 7 // Also, linking this to shared libraries voids the warranty.
8 // 8 //
9 // We need this fake thunks if we build Chrome with ASAN support because 9 // We need this fake thunks if we build Chrome with ASAN support because
10 // pyautolib DSO is instrumented with ASAN and is loaded to regular python 10 // pyautolib DSO is instrumented with ASAN and is loaded to regular python
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 void __asan_report_load1() { } 66 void __asan_report_load1() { }
67 void __asan_report_load2() { } 67 void __asan_report_load2() { }
68 void __asan_report_load4() { } 68 void __asan_report_load4() { }
69 void __asan_report_load8() { } 69 void __asan_report_load8() { }
70 void __asan_report_load16() { } 70 void __asan_report_load16() { }
71 void __asan_report_store1() { } 71 void __asan_report_store1() { }
72 void __asan_report_store2() { } 72 void __asan_report_store2() { }
73 void __asan_report_store4() { } 73 void __asan_report_store4() { }
74 void __asan_report_store8() { } 74 void __asan_report_store8() { }
75 void __asan_report_store16() { } 75 void __asan_report_store16() { }
76 void __asan_set_error_report_callback() { }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698