[compiler-rt] r191078 - [Sanitizer] Add pthread_cond_init to the list of versioned functions

Alexey Samsonov samsonov at google.com
Fri Sep 20 01:37:57 PDT 2013


Author: samsonov
Date: Fri Sep 20 03:37:57 2013
New Revision: 191078

URL: http://llvm.org/viewvc/llvm-project?rev=191078&view=rev
Log:
[Sanitizer] Add pthread_cond_init to the list of versioned functions

Modified:
    compiler-rt/trunk/lib/sanitizer_common/scripts/gen_dynamic_list.py

Modified: compiler-rt/trunk/lib/sanitizer_common/scripts/gen_dynamic_list.py
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/scripts/gen_dynamic_list.py?rev=191078&r1=191077&r2=191078&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/scripts/gen_dynamic_list.py (original)
+++ compiler-rt/trunk/lib/sanitizer_common/scripts/gen_dynamic_list.py Fri Sep 20 03:37:57 2013
@@ -25,9 +25,10 @@ new_delete = set(['_ZdaPv', '_ZdaPvRKSt9
                   '_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 = []





More information about the llvm-commits mailing list