1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-05 09:14:03 +00:00

Restore Bruce's original comment. It seems that "iff" = if and only if,

and is not a typo.  It is used other places in the kernel, too.
This commit is contained in:
Mike Pritchard 1997-03-22 20:34:21 +00:00
parent ec505e0408
commit 9a8f4a4c93
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=24117
3 changed files with 6 additions and 6 deletions

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_clock.c 8.5 (Berkeley) 1/21/94
* $Id: kern_clock.c,v 1.33 1997/03/22 06:52:56 bde Exp $
* $Id: kern_clock.c,v 1.34 1997/03/22 16:52:19 mpp Exp $
*/
/* Portions of this software are covered by the following: */
@ -805,7 +805,7 @@ gettime(struct timeval *tvp)
int s;
s = splclock();
/* XXX should use microtime() if tv_usec is used. */
/* XXX should use microtime() iff tv_usec is used. */
*tvp = time;
splx(s);
}

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_clock.c 8.5 (Berkeley) 1/21/94
* $Id: kern_clock.c,v 1.33 1997/03/22 06:52:56 bde Exp $
* $Id: kern_clock.c,v 1.34 1997/03/22 16:52:19 mpp Exp $
*/
/* Portions of this software are covered by the following: */
@ -805,7 +805,7 @@ gettime(struct timeval *tvp)
int s;
s = splclock();
/* XXX should use microtime() if tv_usec is used. */
/* XXX should use microtime() iff tv_usec is used. */
*tvp = time;
splx(s);
}

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_clock.c 8.5 (Berkeley) 1/21/94
* $Id: kern_clock.c,v 1.33 1997/03/22 06:52:56 bde Exp $
* $Id: kern_clock.c,v 1.34 1997/03/22 16:52:19 mpp Exp $
*/
/* Portions of this software are covered by the following: */
@ -805,7 +805,7 @@ gettime(struct timeval *tvp)
int s;
s = splclock();
/* XXX should use microtime() if tv_usec is used. */
/* XXX should use microtime() iff tv_usec is used. */
*tvp = time;
splx(s);
}