mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-17 22:05:08 +00:00
17 lines
302 B
C
17 lines
302 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
#include <aio.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
struct aiocb aiocb;
|
||
|
|
||
|
aiocb.aio_fildes = 0;
|
||
|
aiocb.aio_offset = 0;
|
||
|
aiocb.aio_buf = 0;
|
||
|
aiocb.aio_nbytes = 0;
|
||
|
aiocb.aio_reqprio = 0;
|
||
|
aiocb.aio_sigevent.sigev_notify = 1 /*SIGEV_NONE*/;
|
||
|
|
||
|
return (int)aio_return(&aiocb);
|
||
|
}
|