~ubuntu-branches/ubuntu/trusty/wvstreams/trusty

« back to all changes in this revision

Viewing changes to linuxstreams/t/wvpty.t.cc

  • Committer: Bazaar Package Importer
  • Author(s): Peter Eisentraut
  • Date: 2008-04-05 14:47:52 UTC
  • mfrom: (0.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080405144752-gka8v86xuo52fmto
Tags: 4.4.1-0.2
* Non-maintainer upload.
* Fixed dependency information LSB header in init.d script
  (closes: #470067)

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
        WvIStreamList l;
12
12
        WvPty pty(argv[0], argv);
13
13
        pty.autoforward(*wvout);
14
 
        l.append(&pty, false);
 
14
        l.append(&pty, false, "pty");
15
15
        while (!pty.child_exited() || pty.isok())
16
16
        {
17
17
            printf("runonce\n");
27
27
        WvIStreamList l;
28
28
        WvPipe pipe(argv[0], argv, true, true, true);
29
29
        pipe.autoforward(*wvout);
30
 
        l.append(&pipe, false);
 
30
        l.append(&pipe, false, "pipe");
31
31
        while (!pipe.child_exited() || pipe.isok())
32
32
        {
33
33
            printf("runonce\n");