Diff

Differences From Artifact [77366d9cfb]:

To Artifact [6b4b6f4978]:


799
800
801
802
803
804
805





806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822

823
824
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830







+
+
+
+
+

















+


static int pty_exitcode(void *handle)
{
    if (!pty_finished)
	return -1;		       /* not dead yet */
    else
	return pty_exit_code;
}

static int pty_cfg_info(void *handle)
{
    return 0;
}

Backend pty_backend = {
    pty_init,
    pty_free,
    pty_reconfig,
    pty_send,
    pty_sendbuffer,
    pty_size,
    pty_special,
    pty_get_specials,
    pty_socket,
    pty_exitcode,
    pty_sendok,
    pty_ldisc,
    pty_provide_ldisc,
    pty_provide_logctx,
    pty_unthrottle,
    pty_cfg_info,
    1
};