posix.cfg: Added support for lockf().

This commit is contained in:
orbitcowboy 2019-05-18 11:07:43 +02:00
parent e85e722fb4
commit 570969be08
1 changed files with 19 additions and 0 deletions

View File

@ -370,12 +370,31 @@
<returnValue type="int"/>
<arg nr="1" direction="in">
<not-uninit/>
<valid>0:</valid>
</arg>
<arg nr="2" direction="in">
<not-uninit/>
<not-bool/>
</arg>
</function>
<!-- int lockf(int fd, int cmd, off_t len); -->
<function name="lockf">
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue type="int"/>
<arg nr="1" direction="in">
<not-uninit/>
<valid>0:</valid>
</arg>
<arg nr="2" direction="in">
<not-uninit/>
<not-bool/>
</arg>
<arg nr="3" direction="in">
<not-uninit/>
<not-bool/>
</arg>
</function>
<!-- int symlink(const char *oldpath, const char *newpath); -->
<function name="symlink">
<noreturn>false</noreturn>