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: doc/specs/stdlib_system.md
+42Lines changed: 42 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -273,3 +273,45 @@ if (p%completed) then
273
273
print *, "Standard Error: ", p%stderr
274
274
endif
275
275
```
276
+
277
+
## `kill` - Terminate a running process
278
+
279
+
### Status
280
+
281
+
Experimental
282
+
283
+
### Description
284
+
285
+
The `kill` interface is used to terminate a running external process. It attempts to stop the process and returns a boolean flag indicating whether the operation was successful.
286
+
This interface is useful when a process needs to be forcefully stopped, for example, if it becomes unresponsive or if its execution is no longer required.
0 commit comments