Interface ProcessEntryParams
interface ProcessEntryParams {
args: string[];
command: string;
cwd: string;
gid: number;
instance: Process;
kernel: Kernel;
pid: number;
shell: Shell;
stderr?: WritableStream<Uint8Array>;
stdin?: ReadableStream<Uint8Array>;
stdout?: WritableStream<Uint8Array>;
terminal: Terminal;
uid: number;
}
args: string[];
command: string;
cwd: string;
gid: number;
instance: Process;
kernel: Kernel;
pid: number;
shell: Shell;
stderr?: WritableStream<Uint8Array>;
stdin?: ReadableStream<Uint8Array>;
stdout?: WritableStream<Uint8Array>;
terminal: Terminal;
uid: number;
}
Properties
args
args: string[]
Command line arguments
command
command: string
Command name
cwd
cwd: string
Working directory
gid
gid: number
Group ID
instance
Process instance
kernel
Reference to kernel instance
pid
pid: number
Process ID
shell
Reference to shell instance
Optional
stderr
Standard error stream
Optional
stdin
Standard input stream
Optional
stdout
Standard output stream
terminal
Reference to terminal instance
uid
uid: number
User ID
Parameters passed to process entry point