From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Mon, 28 Mar 1994 00:27:03 -0500 From: Scott Schwartz schwartz@groucho.cse.psu.edu Subject: Senseless benchmarks Topicbox-Message-UUID: 01810a0c-eac8-11e9-9e20-41e7f4b1d025 Message-ID: <19940328052703.sqKrpZAe-1Nf0eB2fMy0Tce0J8glR5Shc34jSYDcKKc@z> Just for fun, I ran the following program on a machine running SunOS and on a machine running Plan 9 (with obvious alterations to get it to compile.) I was hoping to see Plan 9 go faster, but they took about the same time (10 seconds on a Sparcstation I). Has anyone done more thoughtful benchmarks comparing the two kinds of systems? /* #include #include #define exit exits */ main() { int i; for (i=0; i<1000; ++i) { if (fork()) { wait(0); } else { exit(0); } } } P.S. reason #2 why plan 9 is not my favorite operating system "vc, xc, etc". given that you will usually use an mkfile most of the time anyway, why not name them something sensible like "sparc-cc, mips-cc, etc-cc"?