appThreads.h
上传用户:dahaojd
上传日期:2008-01-29
资源大小:14357k
文件大小:2k
源码类别:

DSP编程

开发平台:

C/C++

  1. /*
  2.  *  Copyright 2002 by Texas Instruments Incorporated.
  3.  *  All rights reserved. Property of Texas Instruments Incorporated.
  4.  *  Restricted rights to use, duplicate or disclose this code are
  5.  *  granted through contract.
  6.  *  
  7.  */
  8. /* "@(#) ReferenceFrameworks 2.00.00 11-14-02 (swat-c17)" */
  9. /*
  10.  *  ======== appThreads.h ========
  11.  *
  12.  */
  13. #ifndef APPTHREADS_
  14. #define APPTHREADS_
  15. #include <que.h>
  16. /*#include "appResources.h" *//* application-wide information */
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /*
  21.  *  Shared scratch memory buckets: most XDAIS algorithms need scratch memory,
  22.  *  and it can be shared among more algorithms they can never be preempted
  23.  *  by one another. By defining "buckets" of shared scratch memory we can
  24.  *  minimize toal scratch memory requirements. When defining a cell, we
  25.  *  set its "shared scratch bucket" to one of the values defined here.
  26.  *  Typically, cells belonging to threads running at same priorities would
  27.  *  go into the same scratch bucket.
  28.  */
  29. enum SSCRBUCKETS {
  30.     THRIOSSCRBUCKET,
  31.     SCRBUCKETS               // total number of shared scratch buckets
  32.     };
  33.     
  34. // control message format
  35. typedef struct CtrlMsg 
  36. {
  37.     LgUns cmd;                       // Message code
  38.     LgUns arg1;                      // First message argument
  39.     LgUns arg2;                      // Second message argument
  40.     LgUns arg3;                      // Third message argument
  41. } CtrlMsg;
  42. #ifdef __cplusplus
  43. }
  44. #endif /* extern "C" */
  45. #endif /* APPTHREADS_ */