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

VxWorks

开发平台:

C/C++

  1. /* taskHookLib.h - header file for taskHookLib.c */
  2. /* Copyright 1984-1992 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 02b,22sep92,rrr  added support for c++
  7. 02a,04jul92,jcf  cleaned up.
  8. 01c,26may92,rrr  the tree shuffle
  9. 01b,04oct91,rrr  passed through the ansification filter
  10.   -fixed #else and #endif
  11.   -changed VOID to void
  12.   -changed copyright notice
  13. 01a,05oct90,shl created.
  14. */
  15. #ifndef __INCtaskHookLibh
  16. #define __INCtaskHookLibh
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /* function declarations */
  21. #if defined(__STDC__) || defined(__cplusplus)
  22. extern void taskHookInit (void);
  23. extern STATUS  taskCreateHookAdd (FUNCPTR createHook);
  24. extern STATUS  taskCreateHookDelete (FUNCPTR createHook);
  25. extern STATUS  taskDeleteHookAdd (FUNCPTR deleteHook);
  26. extern STATUS  taskDeleteHookDelete (FUNCPTR deleteHook);
  27. extern STATUS  taskSwapHookAdd (FUNCPTR swapHook);
  28. extern STATUS  taskSwapHookAttach (FUNCPTR swapHook,int tid,BOOL in,BOOL out);
  29. extern STATUS  taskSwapHookDelete (FUNCPTR swapHook);
  30. extern STATUS  taskSwapHookDetach (FUNCPTR swapHook,int tid,BOOL in,BOOL out);
  31. extern STATUS  taskSwitchHookAdd (FUNCPTR switchHook);
  32. extern STATUS  taskSwitchHookDelete (FUNCPTR switchHook);
  33. extern void taskHookShowInit (void);
  34. extern void  taskCreateHookShow (void);
  35. extern void  taskDeleteHookShow (void);
  36. extern void  taskSwapHookShow (void);
  37. extern void  taskSwitchHookShow (void);
  38. #else /* __STDC__ */
  39. extern void taskHookInit ();
  40. extern STATUS  taskCreateHookAdd ();
  41. extern STATUS  taskCreateHookDelete ();
  42. extern STATUS  taskDeleteHookAdd ();
  43. extern STATUS  taskDeleteHookDelete ();
  44. extern STATUS  taskSwapHookAdd ();
  45. extern STATUS  taskSwapHookAttach ();
  46. extern STATUS  taskSwapHookDelete ();
  47. extern STATUS  taskSwapHookDetach ();
  48. extern STATUS  taskSwitchHookAdd ();
  49. extern STATUS  taskSwitchHookDelete ();
  50. extern void taskHookShowInit ();
  51. extern void  taskCreateHookShow ();
  52. extern void  taskDeleteHookShow ();
  53. extern void  taskSwapHookShow ();
  54. extern void  taskSwitchHookShow ();
  55. #endif /* __STDC__ */
  56. #ifdef __cplusplus
  57. }
  58. #endif
  59. #endif /* __INCtaskHookLibh */