diff options
Diffstat (limited to 'src/aio/struct_aiocb.c')
| -rw-r--r-- | src/aio/struct_aiocb.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/aio/struct_aiocb.c b/src/aio/struct_aiocb.c new file mode 100644 index 00000000..177d8ffa --- /dev/null +++ b/src/aio/struct_aiocb.c @@ -0,0 +1,15 @@ +#include <aio.h> + +struct aiocb { + int aio_fildes; + off_t aio_offset; + volatile void * aio_buf; + size_t aio_nbytes; + int aio_reqprio; + struct sigevent aio_sigevent; + int aio_lio_opcode; +}; + +/* +POSIX(199309) +*/ |
