Skip to content
This repository has been archived by the owner on May 21, 2019. It is now read-only.

Commit

Permalink
[Sanitizer] Add pthread_cond_init to the list of versioned functions
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@191078 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Alexey Samsonov committed Sep 20, 2013
1 parent eb0be61 commit 8e05fda
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/sanitizer_common/scripts/gen_dynamic_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@
'_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 = []
Expand Down

0 comments on commit 8e05fda

Please sign in to comment.