From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: Date: Sun, 21 Aug 2005 16:16:37 -0400 From: Russ Cox To: Fans of the OS Plan 9 from Bell Labs <9fans@cse.psu.edu> Subject: Re: [9fans] 9base ports to unix In-Reply-To: <89d1e7b8050819053245099105@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <89d1e7b8050819053245099105@mail.gmail.com> Topicbox-Message-UUID: 79b29a92-ead0-11e9-9d60-3106f5b1d025 > I did so, because for writing rc scripts, which is my favorite > scripting language already, it sucked to be dependent on dynamically > linked bloat binaries from GNU. I measured that a simple sleep call to > the default sleep program of Debian consumes about 2MB memory. Since > sleep might be rarely used, the problem of GNU test still occurs, I suspect you are confusing VM footprint with memory footprint. In the case of /bin/sleep, presumably all the shared libraries=20 were already in memory and being used by (shared with, if you wil) other programs. Russ