home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / utilities / utilss / sockets / include / sys / arm / h / fp
Encoding:
Text File  |  1994-08-25  |  764 b   |  34 lines

  1. /*
  2.  * $Header: /smsa/bsd:sys/include/arm/fp.h:bsd.riscix1_2  1.3  $
  3.  * $Source: /smsa/bsd:sys/include/arm/fp.h: $
  4.  *
  5.  * Copyright (c) 1988 Acorn Computers Ltd., Cambridge, England
  6.  *
  7.  */
  8.  
  9. #ifndef    __arm_fp_h
  10. #define    __arm_fp_h
  11. #define    __machine_fp_h        "arm"
  12.  
  13. /* This structure contains the per-user floating point registers
  14.  * it is saved on the stack during a signal delivery, or saved
  15.  * into the u area as the FP resource is switched between processes.
  16.  */
  17. struct fp_regs {
  18.     int    fp_status;
  19.     struct    fp_reg {
  20.         int first, second, third;
  21.     } fp_reg[8];
  22. };
  23.  
  24. /*
  25.  * defines for various SYSID bytes
  26.  */
  27. #define SYSIDFPE    0x00            /* software emulator */
  28. #define SYSIDFPPC    0x80            /* FPPC/WE32206 */
  29. #define SYSIDFPA10    0x81            /* FPA10 */
  30.  
  31. #endif/*__arm_fp_h*/
  32.  
  33. /* EOF fp.h */
  34.