~adam-hraska+lp/helenos/cht-bench

« back to all changes in this revision

Viewing changes to kernel/generic/include/interrupt.h

  • Committer: Adam Hraska
  • Date: 2012-08-08 17:19:28 UTC
  • mfrom: (1574.1.16 rcu-clone)
  • Revision ID: adam.hraska+hos@gmail.com-20120808171928-7gf0fh7pcxxcoaoo
Merged in mainline changes from rcu-clone.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
#include <arch/interrupt.h>
39
39
#include <print.h>
 
40
#include <stdarg.h>
40
41
#include <typedefs.h>
41
42
#include <proc/task.h>
42
43
#include <proc/thread.h>
57
58
IRQ_SPINLOCK_EXTERN(exctbl_lock);
58
59
extern exc_table_t exc_table[];
59
60
 
 
61
extern void fault_from_uspace(istate_t *, const char *, ...);
60
62
extern void fault_if_from_uspace(istate_t *, const char *, ...)
61
63
    PRINTF_ATTRIBUTE(2, 3);
62
64
extern istate_t *istate_get(thread_t *);