From owner-cvs-sys Thu May 22 15:37:45 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id PAA13644 for cvs-sys-outgoing; Thu, 22 May 1997 15:37:45 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA13199; Thu, 22 May 1997 15:35:44 -0700 (PDT) From: Steve Passe Received: (from fsmp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA02494; Thu, 22 May 1997 15:35:43 -0700 (PDT) Date: Thu, 22 May 1997 15:35:43 -0700 (PDT) Message-Id: <199705222235.PAA02494@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/i386 mp_machdep.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk fsmp 1997/05/22 15:35:43 PDT Modified files: sys/i386/i386 mp_machdep.c Log: Convert all: panic( "xxxxx\n" ); to: printf( "xxxxx\n" ); panic( "\n" ); For some as yet undetermined reason the argument to panic() is often NOT printed, and the system sometimes hangs before reaching the panic printout. So we hopefully at least print some useful info before the hang, as oppossed to leaving the user clueless as to what has happened. Revision Changes Path 1.10 +49 -27 src/sys/i386/i386/mp_machdep.c