You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// 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);
|
|
}
|