Subversion Repositories shark

Rev

Rev 1618 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 pj 1
/*
2
 * Project: S.Ha.R.K.
3
 *
4
 * Coordinators:
5
 *   Giorgio Buttazzo    <giorgio@sssup.it>
6
 *   Paolo Gai           <pj@gandalf.sssup.it>
7
 *
8
 * Authors     :
9
 *   Massimiliano Giorgi <massy@gandalf.sssup.it>
10
 *   (see the web pages for full authors list)
11
 *
12
 * ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy)
13
 *
14
 * http://www.sssup.it
15
 * http://retis.sssup.it
16
 * http://shark.sssup.it
17
 */
18
 
19
/*
20
 * Copyright (C) 1999 Massimiliano Giorgi
21
 *
22
 * This program is free software; you can redistribute it and/or modify
23
 * it under the terms of the GNU General Public License as published by
24
 * the Free Software Foundation; either version 2 of the License, or
25
 * (at your option) any later version.
26
 *
27
 * This program is distributed in the hope that it will be useful,
28
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
29
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
30
 * GNU General Public License for more details.
31
 *
32
 * You should have received a copy of the GNU General Public License
33
 * along with this program; if not, write to the Free Software
34
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
35
 *
36
 */
37
 
38
/*
917 pj 39
 * CVS :        $Id: panic.c,v 1.2 2005-01-08 14:46:42 pj Exp $
2 pj 40
 *
41
 * File:        $File$
917 pj 42
 * Revision:    $Revision: 1.2 $
43
 * Last update: $Date: 2005-01-08 14:46:42 $
2 pj 44
 */
45
 
46
#include <ll/i386/cons.h>
1621 fabio 47
#include <arch/stdarg.h>
48
#include <arch/string.h>
49
#include <arch/stdio.h>
917 pj 50
#include <stdlib.h>
2 pj 51
#include <kernel/func.h>
52
 
917 pj 53
// defined in kern.c
54
extern int runlevel;
55
 
2 pj 56
static char buf[1024]; /* DANGER !!!!! */
57
 
58
static void sys_panic_stub(void *arg)
59
{
60
  cprintf("KERNEL PANIC (sys_panic_stub): %s\n",buf);
61
}
917 pj 62
 
2 pj 63
void sys_panic(const char * fmt, ...)
64
{
65
  va_list ap;
66
 
67
  va_start(ap, fmt);
68
  vsprintf(buf,(char*)fmt,ap);
69
  va_end(ap);
70
 
71
  sys_atrunlevel(sys_panic_stub, NULL, RUNLEVEL_AFTER_EXIT);
917 pj 72
  printk("KERNEL PANIC (sys_panic): %s\n",buf);
73
 
74
  if (!ll_ActiveInt()) {
75
    if (runlevel==RUNLEVEL_RUNNING)
76
      exit(333);
77
 
78
    if (runlevel==RUNLEVEL_SHUTDOWN)
79
      sys_abort_shutdown(333);
80
  }
81
  else
82
    kern_raise(XPANIC_INSIDE_IRQ, exec_shadow);
2 pj 83
}
84