Finita la conversione dei listati in file separati. Passato anche alla nuova
[gapil.git] / listati / aiocb.h
diff --git a/listati/aiocb.h b/listati/aiocb.h
new file mode 100644 (file)
index 0000000..fd3c643
--- /dev/null
@@ -0,0 +1,10 @@
+struct aiocb
+{
+    int aio_fildes;               /* File descriptor.  */
+    off_t aio_offset;             /* File offset */
+    int aio_lio_opcode;           /* Operation to be performed.  */
+    int aio_reqprio;              /* Request priority offset.  */
+    volatile void *aio_buf;       /* Location of buffer.  */
+    size_t aio_nbytes;            /* Length of transfer.  */
+    struct sigevent aio_sigevent; /* Signal number and value.  */
+};