Difference between revisions of "runtime"

From Lazarus wiki
Jump to navigationJump to search
(Created page with "{{runtime}} A runtime, run time, or execution time is the time during which a executable program is running (executing). == See also == * Runtime T...")
 
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
{{runtime}}
 
{{runtime}}
  
A runtime, run time, or execution time is the time during which a [[Executable program|executable program]] is running (executing).  
+
'''Runtime''' or '''run time''' is the amount of time an [[Executable program|executable program]] takes from start to end, from [[Begin|<syntaxhighlight lang="pascal" inline>begin</syntaxhighlight>]] to [[End|<syntaxhighlight lang="pascal" inline>end</syntaxhighlight>]].
 +
In [[Operating_System|operating systems]] like [[Unix]], it can be approximated by the tool [https://en.wikipedia.org/wiki/Time_(Unix) <code>time(1)</code>].
  
== See also ==
+
'''Run-time''' refers to the environment the [[Program|program]] is in during execution.
* [[Runtime Type Information (RTTI)]]
+
It encompasses the program's own state (for example the process context), as well as the machine's state in general (for instance, amount of available memory, or the operating system).
* Runtime Library ([[RTL]])
+
 
* [[runtime error]]
+
== see also ==
* [https://en.wikipedia.org/wiki/Run_time_(program_lifecycle_phase) Run_time_(program_lifecycle_phase)]
+
* [[Runtime Type Information (RTTI)|run-time type information]]
 +
* [[RTL|run-time library]]
 +
* [[runtime error|run-time error]]
 +
* [https://en.wikipedia.org/wiki/Run_time_(program_lifecycle_phase) “Run time (program lifecycle phase)] in the English Wikipedia

Latest revision as of 17:26, 6 August 2022

English (en) suomi (fi)

Runtime or run time is the amount of time an executable program takes from start to end, from begin to end. In operating systems like Unix, it can be approximated by the tool time(1).

Run-time refers to the environment the program is in during execution. It encompasses the program's own state (for example the process context), as well as the machine's state in general (for instance, amount of available memory, or the operating system).

see also