Sequential and Concurrent Program Execution
Characteristics of sequential execution of programs:
-
Sequentiality: The program is executed strictly in steps, and each action starts after the previous action is completed.
-
Closedness: The running environment of the program is only affected by its own actions and is not interfered by external factors.
-
Reproducibility: Under the same initial conditions, the program has the same execution results each time, regardless of the execution speed.
Characteristics of concurrent execution of programs:
-
Intermittency: Concurrently executed programs may restrict each other due to shared resources or task collaboration, forming an intermittent activity mode of "execution-pause-execution".
-
Loss of closure: Concurrent programs share system resources, and the execution speed and control conversion are affected by external factors, resulting in the running environment no longer being closed.
-
Irreproducibility: After losing closure, concurrently executed programs may obtain different execution results under the same initial conditions.