Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/vm Fix a typo.



details:   https://anonhg.NetBSD.org/src/rev/ae96c017b84f
branches:  trunk
changeset: 473567:ae96c017b84f
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Mon Jun 07 15:25:19 1999 +0000

description:
Fix a typo.

diffstat:

 sys/vm/vm_map.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r f5b109168167 -r ae96c017b84f sys/vm/vm_map.h
--- a/sys/vm/vm_map.h   Mon Jun 07 14:59:14 1999 +0000
+++ b/sys/vm/vm_map.h   Mon Jun 07 15:25:19 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vm_map.h,v 1.27 1999/06/05 04:12:31 thorpej Exp $      */
+/*     $NetBSD: vm_map.h,v 1.28 1999/06/07 15:25:19 thorpej Exp $      */
 
 /* 
  * Copyright (c) 1991, 1993
@@ -221,7 +221,7 @@
        boolean_t rv;
 
        if (map->flags & VM_MAP_INTRSAFE)
-               rv = simple_lock_try(&map->lock.lk_intrlock);
+               rv = simple_lock_try(&map->lock.lk_interlock);
        else
                rv = (lockmgr(&map->lock, LK_EXCLUSIVE|LK_NOWAIT, NULL) == 0);
 



Home | Main Index | Thread Index | Old Index