diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-10-26 02:28:48 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-10-26 02:28:48 +0000 |
commit | 87365a450d655b750dab9768bd72df1bce989457 (patch) | |
tree | 45d0c84f7ff9eca9074ebd92bb071da1f03ad5f8 | |
parent | c683226654033ba54f604a72d73d1a073d66daaf (diff) |
Typo in comment.
-rw-r--r-- | sys/sys/lock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/lock.h b/sys/sys/lock.h index 5caf17fbfe7..1f6d285289e 100644 --- a/sys/sys/lock.h +++ b/sys/sys/lock.h @@ -1,4 +1,4 @@ -/* $OpenBSD: lock.h,v 1.6 2001/06/27 04:51:48 art Exp $ */ +/* $OpenBSD: lock.h,v 1.7 2001/10/26 02:28:47 art Exp $ */ /* * Copyright (c) 1995 @@ -145,7 +145,7 @@ struct lock { * unless one of the following is true: * LK_FORCEUPGRADE is requested and some other process has already * requested a lock upgrade (returns EBUSY). - * LK_WAIT is set and a sleep would be required (returns EBUSY). + * LK_NOWAIT is set and a sleep would be required (returns EBUSY). * LK_SLEEPFAIL is set and a sleep was done (returns ENOLCK). * PCATCH is set in lock priority and a signal arrives (returns * either EINTR or ERESTART if system calls is to be restarted). |