diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 1998-03-30 09:56:58 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1998-03-30 09:56:58 +0000 |
| commit | 227ee8a188f0f8da52dabd7c2c13748a2578efce (patch) | |
| tree | 3bc7a5b892410dae1a4e23ebbc2cb43913cd6195 /sys/kern/tty.c | |
| parent | 20344e15827694bd1a50248ac0c415925ed510e6 (diff) | |
Notes
Diffstat (limited to 'sys/kern/tty.c')
| -rw-r--r-- | sys/kern/tty.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c index 64dcf31a5fa2..fd57c2208820 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -38,7 +38,7 @@ static volatile int ttyverbose = 0; * SUCH DAMAGE. * * @(#)tty.c 8.8 (Berkeley) 1/21/94 - * $Id: tty.c,v 1.100 1997/12/16 17:40:24 eivind Exp $ + * $Id: tty.c,v 1.101 1998/03/07 15:36:21 bde Exp $ */ /*- @@ -1499,7 +1499,7 @@ loop: goto sleep; if (qp->c_cc >= m) goto read; - gettime(&timecopy); + getmicrotime(&timecopy); if (!has_stime) { /* first character, start timer */ has_stime = 1; @@ -1519,7 +1519,7 @@ loop: } else { /* m == 0 */ if (qp->c_cc > 0) goto read; - gettime(&timecopy); + getmicrotime(&timecopy); if (!has_stime) { has_stime = 1; stime = timecopy; |
