[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
rtc RefName
rtc
function returns the number of tasks in a referential.
The parameter is the referential name.
ra
.
Two tasks are created in this referential with the rta
command :
`my_task_1' and `my_task_2'.
rtc
is used before and after tasks creation to print tasks count.
$ dio87d -d $ dio87c -- ra my_ref $ dio87c -- rtc my_ref 0 $ $ dio87c -- rta my_ref my_task_1 $ dio87c -- rta my_ref my_task_2 $ $ dio87c -- rtc my_ref 2 $ dio87c -- rtl my_ref my_task_1 my_task_2 $ |