Control flow

буквально поток [команд] управления, диаграмма [потоков] управления абстрактный способ описания последовательности операций (команд), выполняемых процессором. Программисты визуально представляют ход программы с учётом, например, таких управляющих конструкций, как if ... then ... else, и подпрограмм (процедур), которым управление "передаётся" и от которых "возвращается". Диаграмма [потоков] управления позволяет увидеть логику программы и определить, работает ли она так, как задумано

Англо-русский словарь компьютерных терминов

Control flow

1) процесс управления 2) алгоритм управления; поток (команд) управления

Англо-русский политехнический словарь

Control flow

(Or "flow of control") The sequence of execution of the instructions in a program. Control flow is linear, executing the instructions in the order they were written, unless it is changed at run time by control structures such as if statements, loops or goto statements). These high-level language statements are translated by the compiler or interpreter into machine instructions, most commonly conditional branch instructions. Interrupts and exception handling also change the sequence of execution of instructions but are not part of normal control flow. Not to be confused with "flow control".

Free Online Dictionary of Computing