C++程序  |  56行  |  1.49 KB

/****************************************************************************
 ****************************************************************************
 ***
 ***   This header was automatically generated from a Linux kernel header
 ***   of the same name, to make information necessary for userspace to
 ***   call into the kernel available to libc.  It contains only constants,
 ***   structures, and macros generated from the original header, and thus,
 ***   contains no copyrightable information.
 ***
 ****************************************************************************
 ****************************************************************************/
#ifndef __ASM_SH_USER_H
#define __ASM_SH_USER_H

#include <asm/ptrace.h>
#include <asm/page.h>

#ifdef __SH5__
struct user_fpu_struct {
 unsigned long fp_regs[32];
 unsigned int fpscr;
};
#else
struct user_fpu_struct {
 unsigned long fp_regs[16];
 unsigned long xfp_regs[16];
 unsigned long fpscr;
 unsigned long fpul;
};
#endif

struct user {
 struct pt_regs regs;
 struct user_fpu_struct fpu;
 int u_fpvalid;
 size_t u_tsize;
 size_t u_dsize;
 size_t u_ssize;
 unsigned long start_code;
 unsigned long start_data;
 unsigned long start_stack;
 long int signal;
 unsigned long u_ar0;
 struct user_fpu_struct* u_fpstate;
 unsigned long magic;
 char u_comm[32];
};

#define NBPG PAGE_SIZE
#define UPAGES 1
#define HOST_TEXT_START_ADDR (u.start_code)
#define HOST_DATA_START_ADDR (u.start_data)
#define HOST_STACK_END_ADDR (u.start_stack + u.u_ssize * NBPG)

#endif