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

VxWorks

开发平台:

C/C++

  1. /* usrWdbAltivec.c - optional Altivec support for the WDB agent */
  2. /* Copyright 1997-1998 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01a,10apr01,kab  created.
  7. */
  8. /*
  9. DESCRIPTION
  10. This library configures the WDB agent's Altivec support.
  11. */
  12. extern void wdbTgtHasAltivecSet(void);
  13. /******************************************************************************
  14. *
  15. * wdbAltivecInit - initialize Altivec support
  16. */
  17. void wdbAltivecInit (void)
  18.     {
  19.     /* no altivec - return */
  20.     if (altivecProbe() == ERROR)
  21.         return;
  22.     /* mark altivec unit as available */
  23.     wdbTgtHasAltivecSet();
  24.     }