Interface ProcessEntryParams

Parameters passed to process entry point

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;
}

Properties

args: string[]

Command line arguments

command: string

Command name

cwd: string

Working directory

gid: number

Group ID

instance: Process

Process instance

kernel: Kernel

Reference to kernel instance

pid: number

Process ID

shell: Shell

Reference to shell instance

Standard error stream

Standard input stream

Standard output stream

terminal: Terminal

Reference to terminal instance

uid: number

User ID