From owner-freebsd-questions Sat May 18 12:47:42 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id MAA16326 for questions-outgoing; Sat, 18 May 1996 12:47:42 -0700 (PDT) Received: from dyson.iquest.net (dyson.iquest.net [198.70.144.127]) by freefall.freebsd.org (8.7.3/8.7.3) with ESMTP id MAA16321 for ; Sat, 18 May 1996 12:47:39 -0700 (PDT) Received: (from root@localhost) by dyson.iquest.net (8.7.5/8.6.9) id OAA00359; Sat, 18 May 1996 14:47:31 -0500 (EST) From: "John S. Dyson" Message-Id: <199605181947.OAA00359@dyson.iquest.net> Subject: Re: VSZ, RSS, and -STABLE To: nirva@mail.zynet.com (Danny Dulai) Date: Sat, 18 May 1996 14:47:31 -0500 (EST) Cc: freebsd-questions@freebsd.org In-Reply-To: <199605181759.LAA03434@ns1.zynet.com> from "Danny Dulai" at May 18, 96 11:59:10 am X-Mailer: ELM [version 2.4 PL24 ME8] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > what exactly does the VSZ column in ps aux mean? I am told > that its the total ram a process takes up and RSS is how much > memory is in the core, but my ps aux output shows about half > the processes with a larger RSS than VSZ. > VSZ is the total virtual space in a process (.text+.data+.bss+sbrk), but DOES NOT INCLUDE mmaped regions including shared libs. Shared libs or other mmapped regions is the reason that the resident size is bigger than the virtual size. The RSS DOES include all currently mapped pages. John dyson@freebsd.org