VxWorks Reference Manual : Libraries

taskHookShow

NAME

taskHookShow - task hook show routines

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

DESCRIPTION

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:

INCLUDE FILES

 taskHookLib.h

SEE ALSO

taskHookShow, taskHookLib, VxWorks Programmer's Guide: Basic OS


Libraries : Routines

taskHookShowInit( )

NAME

taskHookShowInit( ) - initialize the task hook show facility

SYNOPSIS


void taskHookShowInit (void)

DESCRIPTION

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:

RETURNS

 N/A

SEE ALSO

taskHookShow


Libraries : Routines

taskCreateHookShow( )

NAME

taskCreateHookShow( ) - show the list of task create routines

SYNOPSIS


void taskCreateHookShow (void)

DESCRIPTION

This routine shows all the task create routines installed in the task create hook table, in the order in which they were installed.

RETURNS

N/A

SEE ALSO

taskHookShow, taskCreateHookAdd( )


Libraries : Routines

taskSwitchHookShow( )

NAME

taskSwitchHookShow( ) - show the list of task switch routines

SYNOPSIS


void taskSwitchHookShow (void)

DESCRIPTION

This routine shows all the switch routines installed in the task switch hook table, in the order in which they were installed.

RETURNS

N/A

SEE ALSO

taskHookShow, taskSwitchHookAdd( )


Libraries : Routines

taskDeleteHookShow( )

NAME

taskDeleteHookShow( ) - show the list of task delete routines

SYNOPSIS


void taskDeleteHookShow (void)

DESCRIPTION

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.

RETURNS

N/A

SEE ALSO

taskHookShow, taskDeleteHookAdd( )