/* * usmalloc README * * (c) 2002 Pawel Jakub Dawidek * * $Id: README,v 1.2 2002/09/19 13:10:45 jules Exp $ * */ How it works? Read comments in usmalloc.c. How to test it? # echo foo > /tmp/foo # echo foobar > /tmp/foobar # kldload usmalloc # cat /tmp/foo usmalloc: converting /tmp/foo to /tmp/foobar [proc=cat] [uid=0] [gid=0] usmalloc: old number of pages: 7 usmalloc: new number of pages: 8 usmalloc: calling real open() usmalloc: number of pages after free: 7 usmalloc: conversion succeed, exiting with 0 foobar # -- Pawel Jakub Dawidek