NXC  Version 1.2.1 r5
 All Data Structures Files Functions Variables Groups Pages
void Follows ( task  task1,
task  task2,
  ...,
task  taskN 
)
inline

Declare tasks that this task follows.

Schedule this task to follow the specified tasks so that it will execute once any of the specified tasks has completed executing. This statement should occur once within a task - preferably at the start of the task definition. If multiple tasks declare that they follow the same task then they will all execute simultaneously unless other dependencies prevent them from doing so. Any number of tasks may be listed in the Follows statement.

Parameters
task1The first task that this task follows.
task2The second task that this task follows.
taskNThe last task that this task follows.
Examples:
ex_Follows.nxc.