Difference between revisions of "SHIP:Sail:reboot"

From Serious Documentation
Jump to: navigation, search
Line 5: Line 5:
 
*[[SHIP:Sail:Flow_Control:break|break]]
 
*[[SHIP:Sail:Flow_Control:break|break]]
  
== [[Flow_Control:reboot|reboot]] ==
+
== [[SHIP:Sail:Flow_Control|reboot]] ==
 
<onlyinclude>Causes SIM to reboot.
 
<onlyinclude>Causes SIM to reboot.
  
Line 12: Line 12:
 
! scope="col" style="text-align:left" | Description
 
! scope="col" style="text-align:left" | Description
 
|-
 
|-
|[[Flow_Control:reboot|reboot]]||Causes immediate termination of code and reboot of SIM.
+
|[[SHIP:Sail:Flow_Control|reboot]]||Causes immediate termination of code and reboot of SIM.
 
|}</onlyinclude>
 
|}</onlyinclude>
 
== Example ==
 
== Example ==

Revision as of 12:02, 10 October 2016

See Also

reboot

Causes SIM to reboot.

Statement Description
reboot Causes immediate termination of code and reboot of SIM.

Example

foo(10) {
   while(a) {
      a -= 1;
   }
   reboot();
}