diff options
author | Emilio G. Cota <cota@braap.org> | 2017-10-18 18:01:41 -0400 |
---|---|---|
committer | Riku Voipio <riku.voipio@linaro.org> | 2017-11-07 21:58:13 +0200 |
commit | a4dd3d5172c951e05a7424f14c0f9372522b48f8 (patch) | |
tree | a1e21607d62c32fc115a0e5bd8cadb562705351a /linux-user | |
parent | 8bf8e9df4a7d82c7a47cc961c9cdee1615595de0 (diff) |
linux-user: fix 'finshed' typo in comment
Signed-off-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/syscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 9268c3ef69..84e123b67b 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -6258,7 +6258,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); |