File: traps.h

package info (click to toggle)
linux 3.16.39-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 757,956 kB
file content (16 lines) | stat: -rw-r--r-- 322 bytes parent folder | download | duplicates (18)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __ASM_TRAPS_H
#define __ASM_TRAPS_H

#ifdef __KERNEL__
struct pt_regs;

/* traps.c */
void parisc_terminate(char *msg, struct pt_regs *regs,
		int code, unsigned long offset) __noreturn __cold;

/* mm/fault.c */
void do_page_fault(struct pt_regs *regs, unsigned long code,
		unsigned long address);
#endif

#endif