diff options
author | Alexey Samsonov <samsonov@google.com> | 2013-10-26 12:54:03 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2013-10-26 12:54:03 +0000 |
commit | 4cc939e6a66d982ccbcb00ab965ca104ee4e0789 (patch) | |
tree | fb6fc2aad010e7bc08691b725dbad4da0b4dcd17 | |
parent | 6b7500e1c363f9358c0f1847a2a23eb2c4fafef4 (diff) | |
download | bcm5719-llvm-4cc939e6a66d982ccbcb00ab965ca104ee4e0789.tar.gz bcm5719-llvm-4cc939e6a66d982ccbcb00ab965ca104ee4e0789.zip |
[Sanitizer] Add pthread_attr_getaffinity_np to the list of versioned functions
llvm-svn: 193470
-rwxr-xr-x | compiler-rt/lib/sanitizer_common/scripts/gen_dynamic_list.py | 3 |
1 files changed, 2 insertions, 1 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 8d2b9d31a3c..32ba9226911 100755 --- a/compiler-rt/lib/sanitizer_common/scripts/gen_dynamic_list.py +++ b/compiler-rt/lib/sanitizer_common/scripts/gen_dynamic_list.py @@ -24,7 +24,8 @@ new_delete = set(['_ZdaPv', '_ZdaPvRKSt9nothrow_t', '_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', |