posix.cfg: add dlopen, dlsym, dlclose

This commit is contained in:
amai2012 2019-01-10 18:33:44 +01:00
parent a48c8abcda
commit e5c7543a7d
1 changed files with 34 additions and 0 deletions

View File

@ -74,6 +74,40 @@
<not-bool/>
</arg>
</function>
<!-- see http://pubs.opengroup.org/onlinepubs/9699919799/functions/dlopen.html -->
<function name="dlopen">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="void*"/>
<arg nr="1">
<not-uninit/>
</arg>
<arg nr="2">
<not-uninit/>
<not-bool/>
</arg>
</function>
<!-- see http://pubs.opengroup.org/onlinepubs/9699919799/functions/dlsym.html -->
<function name="dlsym">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="void*"/>
<arg nr="1">
<not-uninit/>
</arg>
<arg nr="2">
<not-uninit/>
</arg>
</function>
<!-- see http://pubs.opengroup.org/onlinepubs/9699919799/functions/dlclose.html -->
<function name="dlclose">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="int"/>
<arg nr="1">
<not-uninit/>
</arg>
</function>
<!-- int gettimeofday(struct timeval *tv, struct timezone *tz); -->
<function name="gettimeofday">
<noreturn>false</noreturn>