home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
kaffe-0.5p4-src.tgz
/
tar.out
/
contrib
/
kaffe
/
config
/
i386
/
linux
/
jit-md.h
next >
Wrap
C/C++ Source or Header
|
1996-09-28
|
925b
|
40 lines
/*
* i386/linux/jit-md.h
* Linux i386 JIT configuration information.
*
* Copyright (c) 1996 Systems Architecture Research Centre,
* City University, London, UK.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* Written by Tim Wilkinson <tim@sarc.city.ac.uk>, June 1996.
*/
#ifndef __i386_linux_jit_md_h
#define __i386_linux_jit_md_h
/**/
/* Include common information. */
/**/
#include "i386/jit.h"
/**/
/* Extra exception handling information. */
/**/
#include <asm/signal.h>
#if defined(HAVE_ASM_SIGCONTEXT_H)
#include <asm/sigcontext.h>
#endif
/* Function prototype for signal handlers */
#define EXCEPTIONPROTO \
int sig, struct sigcontext_struct ctx
/* Get the first exception frame from a signal handler */
#define EXCEPTIONFRAME(f, c) \
(f).retbp = (c).ebp; \
(f).retpc = (c).eip + 1
#endif