mirror of
https://github.com/vlang/v.git
synced 2025-09-17 19:36:35 -04:00
os: cleanup field comments of os.Process (#21023)
This commit is contained in:
parent
cb595293d5
commit
eaa4edf484
@ -20,10 +20,8 @@ pub struct Process {
|
||||
pub mut:
|
||||
filename string // the process's command file path
|
||||
pid int // the PID of the process
|
||||
code int = -1
|
||||
// the exit code of the process, != -1 *only* when status is .exited *and* the process was not aborted
|
||||
status ProcessState = .not_started
|
||||
// the current status of the process
|
||||
code int = -1 // the exit code of the process, != -1 *only* when status is .exited *and* the process was not aborted
|
||||
status ProcessState = .not_started // the current status of the process
|
||||
err string // if the process fails, contains the reason why
|
||||
args []string // the arguments that the command takes
|
||||
work_folder string // the initial working folder of the process. When '', reuse the same folder as the parent process.
|
||||
|
Loading…
x
Reference in New Issue
Block a user