ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libptytty/src/ptytty.C
(Generate patch)

Comparing libptytty/src/ptytty.C (file contents):
Revision 1.43 by sf-exg, Sun Nov 20 14:38:44 2011 UTC vs.
Revision 1.49 by sf-exg, Wed Jan 18 20:05:13 2012 UTC

1// This file is part of libptytty. Do not make local modifications.
2// http://software.schmorp.de/pkg/libptytty
3
4/*----------------------------------------------------------------------* 1/*----------------------------------------------------------------------*
5 * File: ptytty.C 2 * File: ptytty.C
6 *----------------------------------------------------------------------* 3 *----------------------------------------------------------------------*
7 * 4 *
8 * All portions of code are copyright by their respective author/s. 5 * All portions of code are copyright by their respective author/s.
27 24
28#include "config.h" 25#include "config.h"
29 26
30#include "ptytty.h" 27#include "ptytty.h"
31 28
32#include <cstdlib> 29#include <stdlib.h>
30#include <cstdio>
33#include <cstring> 31#include <cstring>
34#include <csignal>
35 32
36#include <sys/types.h> 33#include <sys/types.h>
37#include <sys/stat.h> 34#include <sys/stat.h>
38#include <unistd.h> 35#include <unistd.h>
39#include <fcntl.h> 36#include <fcntl.h>
56#endif 53#endif
57#ifdef TTY_GID_SUPPORT 54#ifdef TTY_GID_SUPPORT
58#include <grp.h> 55#include <grp.h>
59#endif 56#endif
60 57
61#include <cstdio> 58#ifndef O_NOCTTY
59# define O_NOCTTY 0
60#endif
62 61
63///////////////////////////////////////////////////////////////////////////// 62/////////////////////////////////////////////////////////////////////////////
64 63
65/* ------------------------------------------------------------------------- * 64/* ------------------------------------------------------------------------- *
66 * GET PSEUDO TELETYPE - MASTER AND SLAVE * 65 * GET PSEUDO TELETYPE - MASTER AND SLAVE *
328ptytty_unix::get () 327ptytty_unix::get ()
329{ 328{
330 /* get master (pty) */ 329 /* get master (pty) */
331 if ((pty = get_pty (&tty, &name)) < 0) 330 if ((pty = get_pty (&tty, &name)) < 0)
332 return false; 331 return false;
333
334 fcntl (pty, F_SETFL, O_NONBLOCK);
335 332
336 /* get slave (tty) */ 333 /* get slave (tty) */
337 if (tty < 0) 334 if (tty < 0)
338 { 335 {
339#ifndef NO_SETOWNER_TTYDEV 336#ifndef NO_SETOWNER_TTYDEV
376 ioctl (tty, I_PUSH, "ldterm"); 373 ioctl (tty, I_PUSH, "ldterm");
377 ioctl (tty, I_PUSH, "ttcompat"); 374 ioctl (tty, I_PUSH, "ttcompat");
378 } 375 }
379#endif 376#endif
380 377
378#if UTMP_SUPPORT
379# if defined(HAVE_STRUCT_UTMP) && !defined(HAVE_UTMP_PID)
380 int fd_stdin = dup (STDIN_FILENO);
381 dup2 (tty, STDIN_FILENO);
382
383 utmp_pos = ttyslot ();
384
385 dup2 (fd_stdin, STDIN_FILENO);
386 close (fd_stdin);
387# endif
388#endif
389
381 return true; 390 return true;
382} 391}
383 392

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines