📄 md.h
字号:
/* * alpha/netbsd1/md.h * NetBSD alpha configuration information. * * Copyright (c) 1996, 1997 * Transvirtual Technologies, Inc. All rights reserved. * * See the file "license.terms" for information on usage and redistribution * of this file. */#ifndef __alpha_netbsd1_md_h#define __alpha_netbsd1_md_h#include "alpha/common.h"#include "alpha/threads.h"#if defined(HAVE_SIGNAL_H)#include <signal.h>#endif#if defined(HAVE_SYS_RESOURCE_H)#include <sys/resource.h>#endif#if defined(HAVE_SYS_SIGNAL_H)#include <sys/signal.h>#endif#if defined(HAVE_UNISTD_H)#include <unistd.h>#endif#if defined(TRANSLATOR)#include "jit-md.h"#endif/* Alpha's require a little initialisation for proper IEEE math. */extern void init_md(void);#define INIT_MD() init_md()/* * Redefine stack pointer offset. */#undef SP_OFFSET#define SP_OFFSET 34#if defined(HAVE_SYS_UCONTEXT_H)#include <sys/ucontext.h>/* older netbsd's could have this macro missing, so we provide it */#ifndef _UC_MACHINE_SP#define _UC_MACHINE_SP(uc) ((uc)->uc_mcontext.__gregs[_REG_SP])#endif#ifndef _UC_MACHINE_PC#define _UC_MACHINE_PC(uc) ((uc)->uc_mcontext.__gregs[_REG_PC])#endif#define SIGCONTEXT ucontext_t#define SIGNAL_ARGS(sig, sc) int sig, siginfo_t *__si, void *sc#define SIGNAL_CONTEXT_POINTER(scp) SIGCONTEXT *scp#define SIGNAL_PC(scp) _UC_MACHINE_PC(((SIGCONTEXT *)(scp)))#define STACK_POINTER(scp) _UC_MACHINE_SP(((SIGCONTEXT *)(scp)))#define GET_SIGNAL_CONTEXT_POINTER(sc) (sc)#else#define SIGNAL_ARGS(sig, sc) int sig, int __code, struct sigcontext *sc#define SIGNAL_CONTEXT_POINTER(scp) struct sigcontext *scp#define GET_SIGNAL_CONTEXT_POINTER(sc) (sc)#define SIGNAL_PC(scp) (scp)->sc_pc#define STACK_POINTER(scp) (scp)->sc_sp#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -