From 29d7be1f68f4290f44e3a0ae48583f8e5ddc742e Mon Sep 17 00:00:00 2001 From: Alexey Samsonov Date: Fri, 20 Sep 2013 08:37:57 +0000 Subject: [PATCH] [Sanitizer] Add pthread_cond_init to the list of versioned functions llvm-svn: 191078 --- .../lib/sanitizer_common/scripts/gen_dynamic_list.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/compiler-rt/lib/sanitizer_common/scripts/gen_dynamic_list.py b/compiler-rt/lib/sanitizer_common/scripts/gen_dynamic_list.py index de8ea4d0f70b..8d2b9d31a3c3 100755 --- a/compiler-rt/lib/sanitizer_common/scripts/gen_dynamic_list.py +++ b/compiler-rt/lib/sanitizer_common/scripts/gen_dynamic_list.py @@ -25,9 +25,10 @@ new_delete = set(['_ZdaPv', '_ZdaPvRKSt9nothrow_t', '_Znwm', '_ZnwmRKSt9nothrow_t']) versioned_functions = set(['memcpy', 'pthread_cond_broadcast', - 'pthread_cond_destroy', 'pthread_cond_signal', - 'pthread_cond_timedwait', 'pthread_cond_wait', - 'realpath', 'sched_getaffinity']) + 'pthread_cond_destroy', 'pthread_cond_init', + 'pthread_cond_signal', 'pthread_cond_timedwait', + 'pthread_cond_wait', 'realpath', + 'sched_getaffinity']) def get_global_functions(library): functions = []