posix.cfg: Added support for tcsendbreak.
This commit is contained in:
parent
7a56cfbb66
commit
c0f92b2409
|
@ -3511,6 +3511,19 @@ The function 'mktemp' is considered to be dangerous due to race conditions and s
|
|||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- http://man7.org/linux/man-pages/man3/tcflow.3p.html -->
|
||||
<!-- int tcflow(int fildes, int action); -->
|
||||
<function name="tcflow">
|
||||
<returnValue type="int"/>
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="2">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- http://man7.org/linux/man-pages/man3/tcflush.3p.html -->
|
||||
<!-- int tcflush(int fildes, int queue_selector); -->
|
||||
<function name="tcflush">
|
||||
|
@ -3524,6 +3537,19 @@ The function 'mktemp' is considered to be dangerous due to race conditions and s
|
|||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- http://man7.org/linux/man-pages/man3/tcsendbreak.3p.html -->
|
||||
<!-- int tcsendbreak(int fildes, int duration); -->
|
||||
<function name="tcsendbreak">
|
||||
<returnValue type="int"/>
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="2">
|
||||
<not-null/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- http://man7.org/linux/man-pages/man3/tcgetattr.3p.html -->
|
||||
<!-- int tcgetattr(int fildes, struct termios *termios_p); -->
|
||||
<function name="tcgetattr">
|
||||
|
|
Loading…
Reference in New Issue