1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00

rt: Fix typos in comments in <aio.h>

This commit is contained in:
Jonny Grant
2020-10-19 10:55:00 +02:00
committed by Florian Weimer
parent 7449320983
commit 0e6ee9c143

View File

@@ -33,7 +33,7 @@ __BEGIN_DECLS
/* Asynchronous I/O control block. */ /* Asynchronous I/O control block. */
struct aiocb struct aiocb
{ {
int aio_fildes; /* File desriptor. */ int aio_fildes; /* File descriptor. */
int aio_lio_opcode; /* Operation to be performed. */ int aio_lio_opcode; /* Operation to be performed. */
int aio_reqprio; /* Request priority offset. */ int aio_reqprio; /* Request priority offset. */
volatile void *aio_buf; /* Location of buffer. */ volatile void *aio_buf; /* Location of buffer. */
@@ -61,7 +61,7 @@ struct aiocb
#ifdef __USE_LARGEFILE64 #ifdef __USE_LARGEFILE64
struct aiocb64 struct aiocb64
{ {
int aio_fildes; /* File desriptor. */ int aio_fildes; /* File descriptor. */
int aio_lio_opcode; /* Operation to be performed. */ int aio_lio_opcode; /* Operation to be performed. */
int aio_reqprio; /* Request priority offset. */ int aio_reqprio; /* Request priority offset. */
volatile void *aio_buf; /* Location of buffer. */ volatile void *aio_buf; /* Location of buffer. */
@@ -82,12 +82,11 @@ struct aiocb64
#ifdef __USE_GNU #ifdef __USE_GNU
/* To customize the implementation one can use the following struct. /* To optimize the implementation one can use the following struct. */
This implementation follows the one in Irix. */
struct aioinit struct aioinit
{ {
int aio_threads; /* Maximal number of threads. */ int aio_threads; /* Maximum number of threads. */
int aio_num; /* Number of expected simultanious requests. */ int aio_num; /* Number of expected simultaneous requests. */
int aio_locks; /* Not used. */ int aio_locks; /* Not used. */
int aio_usedba; /* Not used. */ int aio_usedba; /* Not used. */
int aio_debug; /* Not used. */ int aio_debug; /* Not used. */
@@ -99,7 +98,7 @@ struct aioinit
#endif #endif
/* Return values of cancelation function. */ /* Return values of the aio_cancel function. */
enum enum
{ {
AIO_CANCELED, AIO_CANCELED,