Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 22 May 1997 15:35:43 -0700 (PDT)
From:      Steve Passe <fsmp@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
Message-ID:  <199705222235.PAA02494@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199705222235.PAA02494>