Correct some wrong attributes causing false positives. Add more interfaces
This commit is contained in:
parent
d3e79b71b5
commit
7a0f05aaa5
|
@ -2462,7 +2462,7 @@ The function 'mktemp' is considered to be dangerous due to race conditions and s
|
|||
</function>
|
||||
<!-- int pthread_create(pthread_t * thread, const pthread_attr_t * attr, void *(*start_routine)(void*), void * arg); -->
|
||||
<function name="pthread_create">
|
||||
<noreturn>true</noreturn>
|
||||
<noreturn>false</noreturn>
|
||||
<arg nr="1">
|
||||
<not-null/>
|
||||
</arg>
|
||||
|
@ -2473,13 +2473,13 @@ The function 'mktemp' is considered to be dangerous due to race conditions and s
|
|||
<arg nr="4"/>
|
||||
</function>
|
||||
<function name="pthread_detach">
|
||||
<noreturn>true</noreturn>
|
||||
<noreturn>false</noreturn>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<function name="pthread_equal">
|
||||
<noreturn>true</noreturn>
|
||||
<noreturn>false</noreturn>
|
||||
<use-retval/>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
|
@ -2494,16 +2494,37 @@ The function 'mktemp' is considered to be dangerous due to race conditions and s
|
|||
</function>
|
||||
<!-- int pthread_join(pthread_t thread, void **value_ptr); -->
|
||||
<function name="pthread_join">
|
||||
<noreturn>true</noreturn>
|
||||
<noreturn>false</noreturn>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="2"/>
|
||||
</function>
|
||||
<function name="pthread_kill">
|
||||
<noreturn>false</noreturn>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="2">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<function name="pthread_self">
|
||||
<noreturn>true</noreturn>
|
||||
<noreturn>false</noreturn>
|
||||
<use-retval/>
|
||||
</function>
|
||||
<function name="pthread_attr_destroy">
|
||||
<noreturn>false</noreturn>
|
||||
<arg nr="1">
|
||||
<not-null/>
|
||||
</arg>
|
||||
</function>
|
||||
<function name="pthread_attr_init">
|
||||
<noreturn>false</noreturn>
|
||||
<arg nr="1">
|
||||
<not-null/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- int pthread_attr_setstackaddr(pthread_attr_t *attr, void *stackaddr); -->
|
||||
<function name="pthread_attr_setstackaddr">
|
||||
<noreturn>false</noreturn>
|
||||
|
@ -3040,6 +3061,13 @@ The function 'mktemp' is considered to be dangerous due to race conditions and s
|
|||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<function name="sigsuspend">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="1">
|
||||
<not-null/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- http://pubs.opengroup.org/onlinepubs/9699919799/functions/sigprocmask.html -->
|
||||
<!-- int pthread_sigmask(int how, const sigset_t *restrict set,
|
||||
sigset_t *restrict oset);
|
||||
|
|
Loading…
Reference in New Issue