This is the mail archive of the gdb-patches@sourceware.cygnus.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[eliz@is.elta.co.il: Termios support in the DJGPP port of GDB]


------- Start of forwarded message -------
Date: Sun, 27 Jun 1999 18:59:32 +0300 (IDT)
From: Eli Zaretskii <eliz@is.elta.co.il>
X-Sender: eliz@is
To: DJ Delorie <dj@delorie.com>
cc: Robert Hoehne <robert.hoehne@gmx.net>
Subject: Termios support in the DJGPP port of GDB
Content-Type: TEXT/PLAIN; charset=US-ASCII

Since we now use termios in GDB, these two functions need to be ifdef'ed 
away:

1999-06-26  Eli Zaretskii  <eliz@is.elta.co.il>

	* inflow.c (tcgetpgrp, tcsetpgrp) [__DJGPP__]: Define away.

*** ./gdb/inflow.c~1	Thu Dec 10 21:25:42 1998
- --- ./gdb/inflow.c	Fri May 21 23:32:20 1999
*************** Foundation, Inc., 59 Temple Place - Suit
*** 36,41 ****
- --- 36,45 ----
  
  #ifdef HAVE_TERMIOS
  #define PROCESS_GROUP_TYPE pid_t
+ #ifdef __DJGPP__
+ #define tcgetpgrp(x) 42
+ #define tcsetpgrp(f,x) 0
+ #endif
  #endif
  
  #ifdef HAVE_TERMIO
------- End of forwarded message -------

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]