posix.cfg: Added support for aio_suspend().
This commit is contained in:
parent
e374176f17
commit
f3907e4c9e
|
@ -14,6 +14,27 @@
|
||||||
<not-bool/>
|
<not-bool/>
|
||||||
</arg>
|
</arg>
|
||||||
</function>
|
</function>
|
||||||
|
<!-- https://man7.org/linux/man-pages/man3/aio_suspend.3.html -->
|
||||||
|
<!-- int aio_suspend(const struct aiocb *const aiocb_list[], int nitems, const struct timespec *restrict timeout); -->
|
||||||
|
<function name="aio_suspend">
|
||||||
|
<use-retval/>
|
||||||
|
<returnValue type="int"/>
|
||||||
|
<noreturn>false</noreturn>
|
||||||
|
<leak-ignore/>
|
||||||
|
<arg nr="1" direction="in">
|
||||||
|
<not-null/>
|
||||||
|
<not-uninit/>
|
||||||
|
<not-bool/>
|
||||||
|
</arg>
|
||||||
|
<arg nr="2" direction="in">
|
||||||
|
<not-uninit/>
|
||||||
|
<valid>0:</valid>
|
||||||
|
</arg>
|
||||||
|
<arg nr="3" direction="in">
|
||||||
|
<not-uninit/>
|
||||||
|
<not-bool/>
|
||||||
|
</arg>
|
||||||
|
</function>
|
||||||
<!-- http://man7.org/linux/man-pages/man3/a64l.3.html -->
|
<!-- http://man7.org/linux/man-pages/man3/a64l.3.html -->
|
||||||
<!-- long a64l(const char *str64); -->
|
<!-- long a64l(const char *str64); -->
|
||||||
<function name="a64l">
|
<function name="a64l">
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
// No warnings about bad library configuration, unmatched suppressions, etc. exitcode=0
|
// No warnings about bad library configuration, unmatched suppressions, etc. exitcode=0
|
||||||
//
|
//
|
||||||
|
|
||||||
|
#include <aio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h> // <- FILE
|
#include <stdio.h> // <- FILE
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
|
@ -29,6 +30,14 @@
|
||||||
#include <wchar.h>
|
#include <wchar.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
int nullPointer_aio_suspend(const struct aiocb *const aiocb_list[], int nitems, const struct timespec *restrict timeout)
|
||||||
|
{
|
||||||
|
// cppcheck-suppress nullPointer
|
||||||
|
(void)aio_suspend(NULL, nitems, timeout);
|
||||||
|
// No warning is expected
|
||||||
|
return aio_suspend(aiocb_list, nitems, timeout);
|
||||||
|
}
|
||||||
|
|
||||||
// Note: Since glibc 2.28, this function symbol is no longer available to newly linked applications.
|
// Note: Since glibc 2.28, this function symbol is no longer available to newly linked applications.
|
||||||
void invalidFunctionArg_llseek(int fd, loff_t offset, int origin)
|
void invalidFunctionArg_llseek(int fd, loff_t offset, int origin)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue