General Info

Interface: TaskManagerE
Files:
Last change: 01/05/2003
Author: Luiz Henrique Shigunov
Description
Functions

0x00 - TaskDestroyed - Signal that a task was destroyed

0x01 - ThreadDestroyed - Signal that a thread was destroyed

Description

This page describes the TaskManagerE interface.

A module only needs to implement the functions it needs.

0x00 - TaskDestroyed

Syntax

void TaskDestroyed(TaskManager_Task *task);

Properties

Description

This function is called before task is destroyed. This function may execute in a different task context than the one that is been destroyed.

To permit that task be used without problem, it will be undestroyable.

Return value

Nothing.

0x01 - ThreadDestroyed

Syntax

void ThreadDestroyed(TaskManager_Task *task, TaskManager_Thread *thread);

Properties

Description

This function is called before thread from task is destroyed. This function may execute in a different thread context than the one that is been destroyed.

It's not guaranteed that task still exists.

To permit that task and thread be used without problem, they will be undestroyable.

Return value

Nothing.