aio.h fix typos in comments

Message ID 091db9ff-32bc-60a0-d8d5-06b7c0713943@jguk.org
State Superseded
Delegated to: Arjun Shankar
Headers
Series aio.h fix typos in comments |

Commit Message

Jonny Grant Oct. 5, 2020, 9:15 p.m. UTC
  Hello

Would a patch be supported to fix these comments? I can go through the formal patch process if you would like me to.

Also fix the spelling mistake "desriptor" twice 
, and "simultanious"

Also I removed  "This implementation follows the one in Irix. "
Don't think it is relevant, at least now it isn't.

Thanks
Jonny
  

Comments

Florian Weimer Oct. 6, 2020, 1:12 p.m. UTC | #1
* Jonny Grant:

> -    int aio_num;		/* Number of expected simultanious requests. */
> +    int aio_num;		/* Number of expected simultaneous requests. */

Please also add the missing space, the line should end with: .  */

Commit subject should be something like

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

I can push this for you with those changes.

Thanks,
Florian
  
Jonny Grant Oct. 13, 2020, 8:57 p.m. UTC | #2
On 06/10/2020 14:12, Florian Weimer wrote:
> * Jonny Grant:
> 
>> -    int aio_num;		/* Number of expected simultanious requests. */
>> +    int aio_num;		/* Number of expected simultaneous requests. */
> 
> Please also add the missing space, the line should end with: .  */
> 
> Commit subject should be something like
> 
>   rt: Fix typos in comments in <aio.h>
> 
> I can push this for you with those changes.
> 
> Thanks,
> Florian
> 

Hello Florian

Just wanted to check my other email with aio.h patch came through ok?

In addition, I emailed some patches for alloca.h, alliases.h sys/cdefs.h

Thank you
Jonny
  
Florian Weimer Oct. 19, 2020, 9:09 a.m. UTC | #3
* Jonny Grant:

> Just wanted to check my other email with aio.h patch came through ok?

I have pushed this for you, after fixing up things manually.  (The other
patches do not apply cleanly, either.)

Thanks,
Florian
  

Patch

--- aio.h.orig	2020-10-05 21:46:23.354543383 +0100
+++ aio.h_fix_typos	2020-10-05 22:11:30.415180225 +0100
@@ -33,7 +33,7 @@ 
 /* Asynchronous I/O control block.  */
 struct aiocb
 {
-  int aio_fildes;		/* File desriptor.  */
+  int aio_fildes;		/* File descriptor.  */
   int aio_lio_opcode;		/* Operation to be performed.  */
   int aio_reqprio;		/* Request priority offset.  */
   volatile void *aio_buf;	/* Location of buffer.  */
@@ -61,7 +61,7 @@ 
 #ifdef __USE_LARGEFILE64
 struct aiocb64
 {
-  int aio_fildes;		/* File desriptor.  */
+  int aio_fildes;		/* File descriptor.  */
   int aio_lio_opcode;		/* Operation to be performed.  */
   int aio_reqprio;		/* Request priority offset.  */
   volatile void *aio_buf;	/* Location of buffer.  */
@@ -82,12 +82,11 @@ 
 
 
 #ifdef __USE_GNU
-/* To customize the implementation one can use the following struct.
-   This implementation follows the one in Irix.  */
+/* To customize the implementation one can use the following struct. */
 struct aioinit
   {
     int aio_threads;		/* Maximal 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_usedba;		/* Not used.  */
     int aio_debug;		/* Not used.  */