From owner-cvs-sys Mon May 1 22:57:30 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id WAA20712 for cvs-sys-outgoing; Mon, 1 May 1995 22:57:30 -0700 Received: (from davidg@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id WAA20701 ; Mon, 1 May 1995 22:57:14 -0700 Date: Mon, 1 May 1995 22:57:14 -0700 From: David Greenman Message-Id: <199505020557.WAA20701@freefall.cdrom.com> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/vm vm_object.c vm_object.h Sender: cvs-sys-owner@freebsd.org Precedence: bulk davidg 95/05/01 22:57:12 Modified: sys/vm vm_object.c vm_object.h Log: Changed object hash list to be a list rather than a tailq. This saves space for the hash list buckets and is a little faster. The features of tailq aren't needed. Increased the size of the object hash table to improve performance. In the future, this will be changed so that the table is sized dynamically.