Skip to content

Commit 47e949b

Browse files
committed
posix.cfg: Added support for more functions.
1 parent c2ccd7d commit 47e949b

1 file changed

Lines changed: 41 additions & 0 deletions

File tree

cfg/posix.cfg

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,46 @@
11
<?xml version="1.0"?>
22
<def format="1">
3+
<!-- void FD_CLR(int fd, fd_set *set); -->
4+
<function name="FD_CLR">
5+
<noreturn>false</noreturn>
6+
<arg nr="1">
7+
<not-uninit/>
8+
</arg>
9+
<arg nr="2">
10+
<not-null/>
11+
</arg>
12+
<leak-ignore/>
13+
</function>
14+
<!-- int FD_ISSET(int fd, fd_set *set); -->
15+
<function name="FD_ISSET">
16+
<noreturn>false</noreturn>
17+
<arg nr="1">
18+
<not-uninit/>
19+
</arg>
20+
<arg nr="2">
21+
<not-null/>
22+
</arg>
23+
<leak-ignore/>
24+
</function>
25+
<!-- void FD_SET(int fd, fd_set *set); -->
26+
<function name="FD_SET">
27+
<noreturn>false</noreturn>
28+
<arg nr="1">
29+
<not-uninit/>
30+
</arg>
31+
<arg nr="2">
32+
<not-null/>
33+
</arg>
34+
<leak-ignore/>
35+
</function>
36+
<!-- void FD_ZERO(fd_set *set);-->
37+
<function name="FD_SET">
38+
<noreturn>false</noreturn>
39+
<arg nr="1">
40+
<not-null/>
41+
</arg>
42+
<leak-ignore/>
43+
</function>
344
<!-- int truncate(const char *path, off_t length); -->
445
<function name="truncate">
546
<noreturn>false</noreturn>

0 commit comments

Comments
 (0)