Skip to main content
Open topic with navigation CAPL Functions » ISO11783 » Task Controller Interaction Layer (TC IL) » TCIL_RemoveAllDdops

TCIL_RemoveAllDdops

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

  • long TCIL_RemoveAllDdops(); // form 1
  • long TCIL_RemoveAllDdops(dbNode tc); // form 2

Description

Removes the device descriptor object pools of all Task Controller clients.

Parameters

  • tc: Task Controller simulation node to apply the function.

Return Values

  • 0: Property has been set successfully
  • < 0: An error has occurred: IL Error Code

Example

Example form 2
long result;
result = TCIL_RemoveAllDdops( TC);
if (result < 0)
{
  TestStepFail("Failed to remove current DDOPs!");
}