From owner-freebsd-hackers Tue Oct 29 20:27:19 1996 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id UAA26951 for hackers-outgoing; Tue, 29 Oct 1996 20:27:19 -0800 (PST) Received: from ccs.sogang.ac.kr (ccs.sogang.ac.kr [163.239.1.1]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id UAA26939 for ; Tue, 29 Oct 1996 20:27:10 -0800 (PST) Received: from cslsun10.sogang.ac.kr by ccs.sogang.ac.kr (8.8.2/Sogang) id NAA24011; Wed, 30 Oct 1996 13:20:55 +0900 (KST) Received: by cslsun10.sogang.ac.kr (4.1/SMI-4.1) id AA28839; Wed, 30 Oct 96 13:24:18 KST From: cskim@cslsun10.sogang.ac.kr (Kim Chang Seob) Message-Id: <9610300424.AA28839@cslsun10.sogang.ac.kr> Subject: frame allocation To: freebsd-hackers@FreeBSD.ORG Date: Wed, 30 Oct 1996 13:24:16 +0900 (KST) Cc: cskim@cslsun10.sogang.ac.kr (Kim Chang Seob) Content-Type: text Sender: owner-hackers@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk I have a some question about memory management. this is that 1) if process request 100 frame into physical memory, when free page list is 200 frame in physical memory, how many frame is allocated to process? 100 frame is allocated ? or what percent(%) is allocated? when process request frame, is memory allocated to precess statically? or according to executing file size, frame allocation size is changed? if frame allocation is static, how many frame is allocated to process, if frame allocation is dynamic, how many frame is allocated(what percent(%)) to process. and where is frame allocation function in /usr/src/sys/