Pty.this

Allocates a new pseudo-terminal.

You can later use fork() or the g_spawn_async() family of functions to start a process on the PTY.

If using fork(), you MUST call vte_pty_child_setup() in the child.

If using g_spawn_async() and friends, you MUST either use vte_pty_child_setup() directly as the child setup function, or call vte_pty_child_setup() from your own child setup function supplied.

When using vte_terminal_spawn_sync() with a custom child setup function, vte_pty_child_setup() will be called before the supplied function; you must not call it again.

Also, you MUST pass the %G_SPAWN_DO_NOT_REAP_CHILD flag.

Parameters

flags VtePtyFlags

flags from #VtePtyFlags

cancellable Cancellable

a #GCancellable, or %NULL

Return Value

a new #VtePty, or %NULL on error with @error filled in

Throws

GException on failure. ConstructionException GTK+ fails to create the object.

Meta