user.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: user.h,v 1.1 1996/12/26 14:22:44 davem Exp $
  2.  * asm-sparc64/user.h: Core file definitions for the Sparc.
  3.  *
  4.  * Keep in sync with reg.h.  Actually, we could get rid of this
  5.  * one, since we won't a.out core dump that much anyways - miguel.
  6.  * Copyright (C) 1995 (davem@caip.rutgers.edu)
  7.  */
  8. #ifndef _SPARC64_USER_H
  9. #define _SPARC64_USER_H
  10. #include <asm/a.out.h>
  11. struct sunos_regs {
  12. unsigned int psr, pc, npc, y;
  13. unsigned int regs[15];
  14. };
  15. struct sunos_fpqueue {
  16. unsigned int *addr;
  17. unsigned int inst;
  18. };
  19. struct sunos_fp {
  20. union {
  21. unsigned int regs[32];
  22. double reg_dbls[16];
  23. } fregs;
  24. unsigned int fsr;
  25. unsigned int flags;
  26. unsigned int extra;
  27. unsigned int fpq_count;
  28. struct sunos_fpqueue fpq[16];
  29. };
  30. struct sunos_fpu {
  31. struct sunos_fp fpstatus;
  32. };
  33. /* The SunOS core file header layout. */
  34. struct user {
  35. unsigned int magic;
  36. unsigned int len;
  37. struct sunos_regs regs;
  38. struct exec uexec;
  39. int           signal;
  40. size_t        u_tsize; /* all of these in bytes! */
  41. size_t        u_dsize;
  42. size_t        u_ssize;
  43. char          u_comm[17];
  44. struct sunos_fpu fpu;
  45. unsigned int  sigcode;   /* Special sigcontext subcode, if any */
  46. };
  47. #define NBPG                   PAGE_SIZE /* XXX 4096 maybe? */
  48. #define UPAGES                 1
  49. #define HOST_TEXT_START_ADDR   (u.start_code)
  50. #define HOST_DATA_START_ADDR   (u.start_data)
  51. #define HOST_STACK_END_ADDR    (u.start_stack + u.u_ssize * NBPG)
  52. #define SUNOS_CORE_MAGIC       0x080456
  53. #endif /* !(_SPARC64_USER_H) */