posix.cfg: Added support for fchmodat().

This commit is contained in:
orbitcowboy 2019-05-18 10:54:17 +02:00
parent c0c9f33323
commit 62c4199bcd
1 changed files with 22 additions and 0 deletions

View File

@ -903,6 +903,28 @@ The function 'mktemp' is considered to be dangerous due to race conditions and s
<not-bool/>
</arg>
</function>
<!-- int fchmodat(int dirfd, const char *pathname, mode_t mode, int flags); -->
<function name="fchmodat">
<noreturn>false</noreturn>
<returnValue type="int"/>
<leak-ignore/>
<arg nr="1" direction="in">
<not-uninit/>
<valid>0:</valid>
</arg>
<arg nr="2" direction="in">
<not-null/>
<not-uninit/>
</arg>
<arg nr="3" direction="in">
<not-uninit/>
<not-bool/>
</arg>
<arg nr="4" direction="in">
<not-uninit/>
<not-bool/>
</arg>
</function>
<!-- int rmdir(const char *pathname); -->
<function name="rmdir">
<noreturn>false</noreturn>