@@ -24,7 +24,7 @@ Additionally, a callback function can be specified to execute upon process compl
24
24
25
25
### Syntax
26
26
27
- ` process = ` [[ stdlib_subprocess (module): run (interface)]] ` (args [, stdin] [, want_stdout] [, want_stderr] [, callback] [, payload]) `
27
+ ` process = ` [[ stdlib_system (module): run (interface)]] ` (args [, stdin] [, want_stdout] [, want_stderr] [, callback] [, payload]) `
28
28
29
29
### Arguments
30
30
@@ -69,7 +69,7 @@ Additionally, a callback function can be specified to execute upon process compl
69
69
70
70
### Syntax
71
71
72
- ` process = ` [[ stdlib_subprocess (module): runasync (interface)]] ` (args [, stdin] [, want_stdout] [, want_stderr] [, callback] [, payload]) `
72
+ ` process = ` [[ stdlib_system (module): runasync (interface)]] ` (args [, stdin] [, want_stdout] [, want_stderr] [, callback] [, payload]) `
73
73
74
74
### Arguments
75
75
@@ -108,7 +108,7 @@ This is useful for monitoring the status of asynchronous processes created with
108
108
109
109
### Syntax
110
110
111
- ` status = ` [[ stdlib_subprocess (module): is_running (interface)]] ` (process) `
111
+ ` status = ` [[ stdlib_system (module): is_running (interface)]] ` (process) `
112
112
113
113
### Arguments
114
114
@@ -139,7 +139,7 @@ This is useful for determining whether asynchronous processes created with the `
139
139
140
140
### Syntax
141
141
142
- ` status = ` [[ stdlib_subprocess (module): is_completed (interface)]] ` (process) `
142
+ ` status = ` [[ stdlib_system (module): is_completed (interface)]] ` (process) `
143
143
144
144
### Arguments
145
145
@@ -174,7 +174,7 @@ The result is a real value representing the elapsed time in seconds, measured fr
174
174
175
175
### Syntax
176
176
177
- ` delta_t = ` [[ stdlib_subprocess (module): elapsed (subroutine)]] ` (process) `
177
+ ` delta_t = ` [[ stdlib_system (module): elapsed (subroutine)]] ` (process) `
178
178
179
179
### Arguments
180
180
@@ -212,7 +212,7 @@ in case of process hang or delay.
212
212
213
213
### Syntax
214
214
215
- ` call ` [[ stdlib_subprocess (module): wait (subroutine)]] ` (process [, max_wait_time]) `
215
+ ` call ` [[ stdlib_system (module): wait (subroutine)]] ` (process [, max_wait_time]) `
216
216
217
217
### Arguments
218
218
@@ -243,7 +243,7 @@ This is especially useful for monitoring asynchronous processes and retrieving t
243
243
244
244
### Syntax
245
245
246
- ` call ` [[ stdlib_subprocess (module): update (subroutine)]] ` (process) `
246
+ ` call ` [[ stdlib_system (module): update (subroutine)]] ` (process) `
247
247
248
248
### Arguments
249
249
@@ -269,7 +269,7 @@ This interface is useful when a process needs to be forcefully stopped, for exam
269
269
270
270
### Syntax
271
271
272
- ` call ` [[ stdlib_subprocess (module): kill (subroutine)]] ` (process, success) `
272
+ ` call ` [[ stdlib_system (module): kill (subroutine)]] ` (process, success) `
273
273
274
274
### Arguments
275
275
@@ -431,7 +431,7 @@ It is designed to work across multiple platforms. On Windows, paths with both fo
431
431
432
432
### Syntax
433
433
434
- ` result = [[stdlib_io (module):is_directory(function)]] (path) `
434
+ ` result = [[stdlib_system (module):is_directory(function)]] (path) `
435
435
436
436
### Class
437
437
@@ -506,7 +506,7 @@ The function provides an optional error-handling mechanism via the `state_type`
506
506
507
507
### Syntax
508
508
509
- ` call [[stdlib_fs (module):delete_file(subroutine)]] (path [, err]) `
509
+ ` call [[stdlib_system (module):delete_file(subroutine)]] (path [, err]) `
510
510
511
511
### Class
512
512
Subroutine
0 commit comments