You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/SPECIFICATION.html
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -757,9 +757,9 @@
757
757
758
758
- `STOP(THR: thread):THR` — Cooperatively stop a running thread and mark it finished.
759
759
760
-
- `AWAIT(THR: thread):THR` — Block until the thread is finished.
760
+
- `AWAIT(THR: thread):THR` — Block until `thread` is finished.
761
761
762
-
- `PAUSE(THR: thread,FLT: seconds=-1):THR` — Pause execution while preserving the current location. If `seconds` is provided and is $\ge 0$, the thread is automatically resumed after that duration. Pausing an already-paused thread is a runtime error.
762
+
- `PAUSE(THR: thread,FLT: seconds=-1):THR` — Pause execution while preserving the current location. If `seconds` is provided and is >= 0, `thread` is automatically resumed after that duration. Pausing an already-paused thread is a runtime error.
763
763
764
764
- `RESUME(THR: thread):THR` — Resume a paused thread. Resuming a thread that is not paused is a runtime error.
0 commit comments