(initial_env): Set jit_debug when we are automatically starting a gdb process. * dtable.cc (dtable::get_debugger_info): Don't tty tricks when we are being debugged by our own captive gdb, as determined by jit_debug == true. (dtable::init_std_file_from_handle): Detect errors when initializing a tty early rather than at random points later. * fhandler.h (fhandler_*::init): Return int to indicate success/failure. * fhandler.cc (fhandler_base::init): Reflect change in return value. * pipe.cc (fhandler_pipe::init): Ditto. (fhandler_pipe::create_selectable): Don't say we're retrying when we aren't. * fhandler_console.cc (fhandler_console::init): Ditto. Return success/failure. * fhandler_serial.cc (fhandler_serial::init): Ditto. * fhandler_tty.cc (fhandler_tty_slave::init): Ditto. (fhandler_tty_slave::open): Make debugging output more detailed. * tty.cc (tty_list::terminate): Don't close I/O handles before all slaves have checked in. (tty::slave_alive): Make a non-inlined function. Check if tty pipe handles can be created as an additional exists check. * tty.h (tty::slave_alive): Just define here.
		
			
				
	
	
		
			144 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			144 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/* tty.h: shared tty info for cygwin
 | 
						|
 | 
						|
   Copyright 2000, 2001, 2002, 2003, 2004, 2006 Red Hat, Inc.
 | 
						|
 | 
						|
This file is part of Cygwin.
 | 
						|
 | 
						|
This software is a copyrighted work licensed under the terms of the
 | 
						|
Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
 | 
						|
details. */
 | 
						|
 | 
						|
/* tty tables */
 | 
						|
 | 
						|
#define INP_BUFFER_SIZE 256
 | 
						|
#define OUT_BUFFER_SIZE 256
 | 
						|
#define NTTYS		128
 | 
						|
#define real_tty_attached(p)	((p)->ctty >= 0 && (p)->ctty != TTY_CONSOLE)
 | 
						|
 | 
						|
/* Input/Output/ioctl events */
 | 
						|
 | 
						|
#define OUTPUT_DONE_EVENT	"cygtty.output.done"
 | 
						|
#define IOCTL_REQUEST_EVENT	"cygtty.ioctl.request"
 | 
						|
#define IOCTL_DONE_EVENT	"cygtty.ioctl.done"
 | 
						|
#define RESTART_OUTPUT_EVENT	"cygtty.output.restart"
 | 
						|
#define INPUT_AVAILABLE_EVENT	"cygtty.input.avail"
 | 
						|
#define OUTPUT_MUTEX		"cygtty.output.mutex"
 | 
						|
#define INPUT_MUTEX		"cygtty.input.mutex"
 | 
						|
#define TTY_SLAVE_ALIVE		"cygtty.slave_alive"
 | 
						|
#define TTY_MASTER_ALIVE	"cygtty.master_alive"
 | 
						|
 | 
						|
#include <sys/termios.h>
 | 
						|
 | 
						|
#ifndef MIN_CTRL_C_SLOP
 | 
						|
#define MIN_CTRL_C_SLOP 50
 | 
						|
#endif
 | 
						|
 | 
						|
class tty_min
 | 
						|
{
 | 
						|
  pid_t sid;	/* Session ID of tty */
 | 
						|
  struct status_flags
 | 
						|
  {
 | 
						|
    unsigned initialized : 1; /* Set if tty is initialized */
 | 
						|
    unsigned rstcons     : 1; /* Set if console needs to be set to "non-cooked" */
 | 
						|
  } status;
 | 
						|
 | 
						|
public:
 | 
						|
  pid_t pgid;
 | 
						|
  int output_stopped;
 | 
						|
  int ntty;
 | 
						|
  DWORD last_ctrl_c;	/* tick count of last ctrl-c */
 | 
						|
  HWND hwnd;		/* Console window handle tty belongs to */
 | 
						|
 | 
						|
  IMPLEMENT_STATUS_FLAG (bool, initialized)
 | 
						|
  IMPLEMENT_STATUS_FLAG (bool, rstcons)
 | 
						|
 | 
						|
  struct termios ti;
 | 
						|
  struct winsize winsize;
 | 
						|
 | 
						|
  /* ioctl requests buffer */
 | 
						|
  int cmd;
 | 
						|
  union
 | 
						|
  {
 | 
						|
    struct termios termios;
 | 
						|
    struct winsize winsize;
 | 
						|
    int value;
 | 
						|
    pid_t pid;
 | 
						|
  } arg;
 | 
						|
  /* XXX_retval variables holds master's completion codes. Error are stored as
 | 
						|
   * -ERRNO
 | 
						|
   */
 | 
						|
  int ioctl_retval;
 | 
						|
  int write_error;
 | 
						|
 | 
						|
  void setntty (int n) {ntty = n;}
 | 
						|
  pid_t getpgid () {return pgid;}
 | 
						|
  void setpgid (int pid) {pgid = pid;}
 | 
						|
  int getsid () {return sid;}
 | 
						|
  void setsid (pid_t tsid) {sid = tsid;}
 | 
						|
  void kill_pgrp (int sig);
 | 
						|
  HWND gethwnd () {return hwnd;}
 | 
						|
  void sethwnd (HWND wnd) {hwnd = wnd;}
 | 
						|
};
 | 
						|
 | 
						|
class fhandler_pty_master;
 | 
						|
 | 
						|
class tty: public tty_min
 | 
						|
{
 | 
						|
  HANDLE get_event (const char *fmt, BOOL manual_reset = FALSE)
 | 
						|
    __attribute__ ((regparm (3)));
 | 
						|
public:
 | 
						|
  pid_t master_pid;	/* PID of tty master process */
 | 
						|
 | 
						|
  HANDLE from_master, to_master;
 | 
						|
 | 
						|
  int read_retval;
 | 
						|
  bool was_opened;	/* True if opened at least once. */
 | 
						|
 | 
						|
  void init ();
 | 
						|
  HANDLE create_inuse (const char *);
 | 
						|
  bool alive (const char *fmt);
 | 
						|
  bool slave_alive ();
 | 
						|
  bool master_alive ();
 | 
						|
  HANDLE open_mutex (const char *mutex);
 | 
						|
  HANDLE open_output_mutex ();
 | 
						|
  HANDLE open_input_mutex ();
 | 
						|
  bool exists ();
 | 
						|
  void set_master_closed () {master_pid = -1;}
 | 
						|
  static void __stdcall create_master (int);
 | 
						|
  static void __stdcall init_session ();
 | 
						|
  friend class fhandler_pty_master;
 | 
						|
};
 | 
						|
 | 
						|
class tty_list
 | 
						|
{
 | 
						|
  tty ttys[NTTYS];
 | 
						|
  static HANDLE mutex;
 | 
						|
 | 
						|
public:
 | 
						|
  tty * operator [](int n) {return ttys + n;}
 | 
						|
  int allocate (bool); /* true if allocate a tty, pty otherwise */
 | 
						|
  int connect (int);
 | 
						|
  void terminate ();
 | 
						|
  void init ();
 | 
						|
  tty_min *get_tty (int n);
 | 
						|
  int __stdcall attach (int);
 | 
						|
  static void __stdcall init_session ();
 | 
						|
  friend class lock_ttys;
 | 
						|
};
 | 
						|
 | 
						|
class lock_ttys
 | 
						|
{
 | 
						|
  bool release_me;
 | 
						|
public:
 | 
						|
  lock_ttys (DWORD = INFINITE);
 | 
						|
  static void release ();
 | 
						|
  void dont_release () {release_me = false;}
 | 
						|
  ~lock_ttys ()
 | 
						|
  {
 | 
						|
    if (release_me)
 | 
						|
      release ();
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
extern "C" int ttyslot (void);
 |