diff options
| author | Alexey Samsonov <samsonov@google.com> | 2013-10-16 08:20:31 +0000 |
|---|---|---|
| committer | Alexey Samsonov <samsonov@google.com> | 2013-10-16 08:20:31 +0000 |
| commit | edecc3839553adedd004b87081b9fa248df7a428 (patch) | |
| tree | 9a783cccbfde21bef775c094c468276b86a25aa5 /compiler-rt/lib/interception/interception_win.h | |
| parent | c2ccbaffa334bdd7f1c4923589543001cfff7b5c (diff) | |
| download | bcm5719-llvm-edecc3839553adedd004b87081b9fa248df7a428.tar.gz bcm5719-llvm-edecc3839553adedd004b87081b9fa248df7a428.zip | |
Make some pthread_mutex_* and pthread_cond_* interceptors common.
Reviewers: eugenis, dvyukov
Reviewed By: dvyukov
CC: llvm-commits
Differential Revision: http://llvm-reviews.chandlerc.com/D1937
llvm-svn: 192774
Diffstat (limited to 'compiler-rt/lib/interception/interception_win.h')
| -rw-r--r-- | compiler-rt/lib/interception/interception_win.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler-rt/lib/interception/interception_win.h b/compiler-rt/lib/interception/interception_win.h index c64af1baffe..f2727c9241d 100644 --- a/compiler-rt/lib/interception/interception_win.h +++ b/compiler-rt/lib/interception/interception_win.h @@ -41,5 +41,8 @@ bool OverrideFunction(uptr old_func, uptr new_func, uptr *orig_old_func); (::__interception::uptr*)&REAL(func)) #endif +#define INTERCEPT_FUNCTION_VER_WIN(func, symver) \ + INTERCEPT_FUNCTION_WIN(func) + #endif // INTERCEPTION_WIN_H #endif // _WIN32 |

