Difference between revisions of "MC-Basic:BACKTRACE$"

From SoftMC-Wiki
Jump to: navigation, search
 
(12 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{Languages|MC-Basic:BACKTRACE$}}
 
{{MC-Basic
 
{{MC-Basic
 
|SHORT FORM=
 
|SHORT FORM=
Line 4: Line 5:
  
 
|SYNTAX=
 
|SYNTAX=
BackTrace$ ''<task name string>''
+
BackTrace$ <''task name string''>
  
 
|AVAILABILITY=
 
|AVAILABILITY=
Version 4.5.3 and higher
+
Since Version 4.5.3
  
 
|DESCRIPTION=
 
|DESCRIPTION=
Print function stack of the task, including function or subroutine name.
+
Prints the function stack of the task, including function or subroutine name.
  
{{Note|BackTrace can be only executed for the task, which is not in the running state.}}
+
{{Note|BackTrace can only be executed for a task that is not in the running state.}}
  
 
|TYPE=
 
|TYPE=
''<task name string>'': string
+
<''task name string''>: string
  
 
|RANGE=
 
|RANGE=
''<task name string>'': name of a task that is loaded in memory
+
<''task name string''>: name of a task that is loaded in memory
  
 
|UNITS=
 
|UNITS=
Line 30: Line 31:
  
 
|LIMITATIONS=
 
|LIMITATIONS=
Read-Only. Task must be loaded in memory.
+
*Read only.
 +
*Task must be loaded in memory.
  
 
|EXAMPLE=
 
|EXAMPLE=
 
BackTrace “XYRot.prg”
 
BackTrace “XYRot.prg”
 
 
  
 
Common shared TaskName as string = “XYRot.prg”
 
Common shared TaskName as string = “XYRot.prg”
Line 42: Line 42:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:BACKTRACE|BACKTRACE]]
+
* [[MC-Basic:BACKTRACE|BACKTRACE]]
* [[Axystems:MC-Basic:CONTINUETASK$|CONTINUETASK$]]
+
* [[MC-Basic:CONTINUETASK$|CONTINUETASK$]]
* [[Axystems:MC-Basic:KILLTASK$|KILLTASK$]]
+
* [[MC-Basic:KILLTASK$|KILLTASK$]]
* [[Axystems:MC-Basic:LOAD$|LOAD$]]
+
* [[MC-Basic:LOAD$|LOAD$]]
* [[Axystems:MC-Basic:STARTTASK$|STARTTASK$]]
+
* [[MC-Basic:STARTTASK$|STARTTASK$]]
  
[[Category:Axystems:MC-Basic:Debug Tools|BACKTRACE$]]
+
[[Category:MC-Basic:Debug Tools|BACKTRACE$]]
 
}}
 
}}

Latest revision as of 06:05, 24 April 2017

Language: English  • 中文(简体)‎

Prints the function stack of the task, including function or subroutine name.

NOTE-Info.svgNOTE
BackTrace can only be executed for a task that is not in the running state.

Syntax

BackTrace$ <task name string>

Availability

Since Version 4.5.3

Type

<task name string>: string

Range

<task name string>: name of a task that is loaded in memory

Scope

Task or Terminal

Limitations

  • Read only.
  • Task must be loaded in memory.

Examples

BackTrace “XYRot.prg”

Common shared TaskName as string = “XYRot.prg”

BackTrace$ TaskName

See Also