The following patch fixes it.

        -Arun

# diff -u vm_map.h- vm_map.h
--- vm_map.h-   Tue Oct 12 22:52:10 1999
+++ vm_map.h    Tue Oct 12 22:54:58 1999
@@ -229,7 +229,7 @@
 #if defined(MAP_LOCK_DIAGNOSTIC)
        printf("locking map LK_EXCLUPGRADE: 0x%x\n", map);
 #endif
-       error = lockmgr(&map->lock, LK_EXCLUPGRADE, (void *)0, p);
+       error = lockmgr(&map->lock, LK_EXCLUPGRADE, (struct simplelock *)0, p);
        if (error == 0)
                map->timestamp++;
        return error;



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message

Reply via email to