[Qemu-devel] [PATCH 2/4] linux-user: fix 'finshed' typo in comment

Emilio G. Cota posted 4 patches 8 years, 3 months ago
[Qemu-devel] [PATCH 2/4] linux-user: fix 'finshed' typo in comment
Posted by Emilio G. Cota 8 years, 3 months ago
Signed-off-by: Emilio G. Cota <cota@braap.org>
---
 linux-user/syscall.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 9d4cc4c..47b4a79 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -6231,7 +6231,7 @@ static void *clone_func(void *arg)
     pthread_mutex_lock(&info->mutex);
     pthread_cond_broadcast(&info->cond);
     pthread_mutex_unlock(&info->mutex);
-    /* Wait until the parent has finshed initializing the tls state.  */
+    /* Wait until the parent has finished initializing the tls state.  */
     pthread_mutex_lock(&clone_lock);
     pthread_mutex_unlock(&clone_lock);
     cpu_loop(env);
-- 
2.7.4


Re: [Qemu-devel] [PATCH 2/4] linux-user: fix 'finshed' typo in comment
Posted by Riku Voipio 8 years, 3 months ago
Applied to linux-user, thanks

Riku

On Wed, Oct 18, 2017 at 06:01:41PM -0400, Emilio G. Cota wrote:
> Signed-off-by: Emilio G. Cota <cota@braap.org>
> ---
>  linux-user/syscall.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index 9d4cc4c..47b4a79 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -6231,7 +6231,7 @@ static void *clone_func(void *arg)
>      pthread_mutex_lock(&info->mutex);
>      pthread_cond_broadcast(&info->cond);
>      pthread_mutex_unlock(&info->mutex);
> -    /* Wait until the parent has finshed initializing the tls state.  */
> +    /* Wait until the parent has finished initializing the tls state.  */
>      pthread_mutex_lock(&clone_lock);
>      pthread_mutex_unlock(&clone_lock);
>      cpu_loop(env);
> -- 
> 2.7.4
> 
>