Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!uwm.edu!psuvax1!news From: melling@cs.psu.edu (Michael D Mellinger) Newsgroups: comp.sys.amiga.advocacy Subject: Re: Peter, can you explain to the Amigoids (was: NeXT software size Message-ID: <*05Gx0x&1@cs.psu.edu> Date: 6 May 91 22:16:52 GMT References: <11866@uwm.edu> Sender: news@cs.psu.edu (Usenet) Organization: Penn State Computer Science Lines: 32 In-Reply-To: gblock@csd4.csd.uwm.edu's message of 6 May 91 19:38:59 GMT Nntp-Posting-Host: sunws5.sys.cs.psu.edu In article <11866@uwm.edu> gblock@csd4.csd.uwm.edu (Gregory R Block) writes: okay, maybe this will be a little easier to understand. A 500k program on your NeXT will be faster than a 2mb program on it, no? So a 500k program on a 68040 3000 will be faster than a 2mb program on your NeXT. No, they will run at the same speed, unless you get swapping but that will depend on how much memory you have. Once the working set is in the computer, it doesn't swap until it needs a page that isn't in memory. Write a simple "Hello, World" in C, and tell us the size. That will tell us quite a bit, I think. int main() { printf("hello world.\n"); } compiled with cc -s -object test.c -rwxr-xr-x 1 melling wheel 1236 May 6 18:11 a.out* or as compiled normally. compiled with cc -s test.c -rwxr-xr-x 1 melling wheel 16384 May 6 18:13 a.out*