diff options
author | Yuri Chornoivan <yurchor@ukr.net> | 2013-10-12 14:21:55 +0200 |
---|---|---|
committer | Ondřej Bílka <neleai@seznam.cz> | 2013-10-12 14:47:50 +0200 |
commit | 5560275828a1a8f3614b87999c9fd2831d0b232d (patch) | |
tree | 14244c38d7067937f57a8ac30587e3fd959a7682 /ports/sysdeps | |
parent | 9cd8330240f930c5509592cd8d57133e52ac30e7 (diff) | |
download | glibc-5560275828a1a8f3614b87999c9fd2831d0b232d.tar.gz glibc-5560275828a1a8f3614b87999c9fd2831d0b232d.tar.xz glibc-5560275828a1a8f3614b87999c9fd2831d0b232d.zip |
Fix typos.
Diffstat (limited to 'ports/sysdeps')
-rw-r--r-- | ports/sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S | 2 | ||||
-rw-r--r-- | ports/sysdeps/unix/sysv/linux/alpha/nptl/vfork.S | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ports/sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S b/ports/sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S index d9629b9ec5..50b152d0cb 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S +++ b/ports/sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S @@ -25,7 +25,7 @@ ldl a2, PID_OFFSET(v0); \ mov v0, a1; \ /* Write back its negation, to indicate that the pid value is \ - uninitialized in the the child, and in the window between \ + uninitialized in the child, and in the window between \ here and the point at which we restore the value. */ \ negl a2, t0; \ stl t0, PID_OFFSET(v0); diff --git a/ports/sysdeps/unix/sysv/linux/alpha/nptl/vfork.S b/ports/sysdeps/unix/sysv/linux/alpha/nptl/vfork.S index 1ca7678d1c..03aa37f43c 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/nptl/vfork.S +++ b/ports/sysdeps/unix/sysv/linux/alpha/nptl/vfork.S @@ -26,7 +26,7 @@ mov v0, a1; \ /* If the cached value is initialized (nonzero), then write \ back its negation, or INT_MIN, to indicate that the pid \ - value is uninitialized in the the child, and in the window \ + value is uninitialized in the child, and in the window \ between here and the point at which we restore the value. */ \ ldah t0, -0x8000; \ negl a2, t1; \ |