fppArmLib.h
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* fppArmLib.h - ARM floating-point coprocessor support header file */
  2. /* Copyright 1996-1997 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01a,09may96,cdp  created
  7. */
  8. #ifndef __INCfppArmLibh
  9. #define __INCfppArmLibh
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. #ifndef _ASMLANGUAGE
  14. typedef struct fpContext
  15.     {
  16.     int dummy;
  17.     } FP_CONTEXT;
  18. #define FPREG_SET FP_CONTEXT
  19. /* variable declarations */
  20. extern REG_INDEX fpRegName[]; /* f-point data register table */
  21. extern REG_INDEX fpCtlRegName[]; /* f-point control register table */
  22. extern WIND_TCB *pFppTaskIdPrevious; /* task id for deferred exceptions */
  23. extern FUNCPTR  fppCreateHookRtn; /* arch dependent create hook routine */
  24. extern FUNCPTR  fppDisplayHookRtn; /* arch dependent display routine */
  25. /* function declarations */
  26. #if defined(__STDC__) || defined(__cplusplus)
  27. IMPORT void fppArchInit (void);
  28. IMPORT void fppArchTaskCreateInit (FP_CONTEXT *pFpContext);
  29. #else /* __STDC__ */
  30. IMPORT void fppArchInit ();
  31. IMPORT void fppArchTaskCreateInit ();
  32. #endif /* __STDC__ */
  33. #endif /* _ASMLANGUAGE */
  34. #ifdef __cplusplus
  35. }
  36. #endif
  37. #endif /* __INCfppArmLibh */