VxWorks Reference Manual : Libraries
taskHookShow - task hook show routines
taskHookShowInit( ) - initialize the task hook show facility
taskCreateHookShow( ) - show the list of task create routines
taskSwitchHookShow( ) - show the list of task switch routines
taskDeleteHookShow( ) - show the list of task delete routines
This library provides routines which summarize the installed kernel hook routines. There is one routine dedicated to the display of each type of kernel hook: task operation, task switch, and task deletion.
The routine taskHookShowInit( ) links the task hook show facility into the VxWorks system. It is called automatically when this show facility is configured into VxWorks using either of the following methods:
- If you use the configuration header files, define INCLUDE_SHOW_ROUTINES in config.h.
- If you use the Tornado project facility, select INCLUDE_TASK_HOOK_SHOW.
taskHookLib.h
taskHookShow, taskHookLib, VxWorks Programmer's Guide: Basic OS
taskHookShowInit( ) - initialize the task hook show facility
void taskHookShowInit (void)
This routine links the task hook show facility into the VxWorks system. It is called automatically when the task hook show facility is configured into VxWorks using either of the following methods:
- If you use the configuration header files, define INCLUDE_SHOW_ROUTINES in config.h.
- If you use the Tornado project facility, select INCLUDE_TASK_HOOK_SHOW.
N/A
taskCreateHookShow( ) - show the list of task create routines
void taskCreateHookShow (void)
This routine shows all the task create routines installed in the task create hook table, in the order in which they were installed.
N/A
taskHookShow, taskCreateHookAdd( )
taskSwitchHookShow( ) - show the list of task switch routines
void taskSwitchHookShow (void)
This routine shows all the switch routines installed in the task switch hook table, in the order in which they were installed.
N/A
taskHookShow, taskSwitchHookAdd( )
taskDeleteHookShow( ) - show the list of task delete routines
void taskDeleteHookShow (void)
This routine shows all the delete routines installed in the task delete hook table, in the order in which they were installed. Note that the delete routines will be run in reverse of the order in which they were installed.
N/A