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

VxWorks

开发平台:

C/C++

  1. /* usrAltivec.c - dsp support library */
  2. /* Copyright 1984-1999 Wind River Systems, Inc. */
  3. #include "copyright_wrs.h"
  4. /*
  5. modification history
  6. --------------------
  7. 01a,10may01,dtr Created
  8. */
  9. /* DESCRIPTION :
  10.  * Initialises shell task options and general spawn task options to 
  11.  * include VX_ALTIVEC_TASK 
  12.  */
  13. #include "altivecLib.h"
  14.  
  15. void usrAltivecInit (void)
  16.     {
  17.     altivecInit();
  18. #ifdef  INCLUDE_SHELL
  19.     {
  20.     extern int shellTaskOptions;
  21.     extern int spTaskOptions;
  22.     shellTaskOptions |= VX_ALTIVEC_TASK;
  23.     spTaskOptions |= VX_ALTIVEC_TASK;
  24.     }
  25. #endif  /* INCLUDE_SHELL */
  26. #ifdef  INCLUDE_SHOW_ROUTINES
  27.     altivecShowInit ();                     /* install dsp show routine */
  28. #endif  /* INCLUDE_SHOW_ROUTINES */
  29.     }