[compiler-rt] r193470 - [Sanitizer] Add pthread_attr_getaffinity_np to the list of versioned functions

Alexey Samsonov samsonov at google.com
Sat Oct 26 05:54:03 PDT 2013


Author: samsonov
Date: Sat Oct 26 07:54:03 2013
New Revision: 193470

URL: http://llvm.org/viewvc/llvm-project?rev=193470&view=rev
Log:
[Sanitizer] Add pthread_attr_getaffinity_np 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=193470&r1=193469&r2=193470&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 Sat Oct 26 07:54:03 2013
@@ -24,7 +24,8 @@ new_delete = set(['_ZdaPv', '_ZdaPvRKSt9
                   '_Znam', '_ZnamRKSt9nothrow_t',
                   '_Znwm', '_ZnwmRKSt9nothrow_t'])
 
-versioned_functions = set(['memcpy', 'pthread_cond_broadcast',
+versioned_functions = set(['memcpy', 'pthread_attr_getaffinity_np',
+                           'pthread_cond_broadcast',
                            'pthread_cond_destroy', 'pthread_cond_init',
                            'pthread_cond_signal', 'pthread_cond_timedwait',
                            'pthread_cond_wait', 'realpath',





More information about the llvm-commits mailing list