diff options
author | 2001-03-13 00:05:51 +0000 | |
---|---|---|
committer | 2001-03-13 00:05:51 +0000 | |
commit | 40e93c45e0c1b099d9adbae03f3cc51ec2c7e593 (patch) | |
tree | 97572c0d63d5beeffc382ff47e5abac2e27de7d7 /lib/libpthread/arch/i386/_atomic_lock.c | |
parent | recursive mutex test (diff) | |
download | wireguard-openbsd-40e93c45e0c1b099d9adbae03f3cc51ec2c7e593.tar.xz wireguard-openbsd-40e93c45e0c1b099d9adbae03f3cc51ec2c7e593.zip |
typo in comment
Diffstat (limited to 'lib/libpthread/arch/i386/_atomic_lock.c')
-rw-r--r-- | lib/libpthread/arch/i386/_atomic_lock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpthread/arch/i386/_atomic_lock.c b/lib/libpthread/arch/i386/_atomic_lock.c index f2aab7d11cc..87d3d62ce4c 100644 --- a/lib/libpthread/arch/i386/_atomic_lock.c +++ b/lib/libpthread/arch/i386/_atomic_lock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: _atomic_lock.c,v 1.5 2000/10/03 02:58:58 d Exp $ */ +/* $OpenBSD: _atomic_lock.c,v 1.6 2001/03/13 00:05:51 d Exp $ */ /* David Leonard, <d@csee.uq.edu.au>. Public domain. */ /* @@ -14,7 +14,7 @@ _atomic_lock(volatile _spinlock_lock_t *lock) /* * Use the eXCHanGe instruction to swap the lock value with - * a local variable containg the locked state. + * a local variable containing the locked state. */ old = _SPINLOCK_LOCKED; __asm__("xchg %0,%1" |