ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/init.h
(Generate patch)

Comparing rxvt-unicode/src/init.h (file contents):
Revision 1.9 by root, Tue Jan 17 11:02:10 2006 UTC vs.
Revision 1.13 by ayin, Mon Jun 25 13:50:41 2007 UTC

9# include <X11/Xlocale.h> 9# include <X11/Xlocale.h>
10#else 10#else
11# ifdef HAVE_SETLOCALE 11# ifdef HAVE_SETLOCALE
12# include <clocale> 12# include <clocale>
13# endif 13# endif
14#endif /* HAVE_XLOCALE */
15
16#if defined(PTYS_ARE_PTMX) && !defined(__CYGWIN32__)
17# include <sys/resource.h> /* for struct rlimit */
18# define _NEW_TTY_CTRL /* to get proper defines in <termios.h> */
19#endif 14#endif
20 15
21#ifdef TTY_GID_SUPPORT 16#ifdef TTY_GID_SUPPORT
22# include <grp.h> 17# include <grp.h>
23#endif 18#endif
24 19
25/* ways to deal with getting/setting termios structure */ 20/* ways to deal with getting/setting termios structure */
26 21
27#ifdef HAVE_TERMIOS_H
28/* termios interface */ 22/* termios interface */
29# ifdef TCSANOW /* POSIX */
30# define GET_TERMIOS(fd,tios) tcgetattr (fd, tios) 23#define GET_TERMIOS(fd,tios) tcgetattr (fd, tios)
31# define SET_TERMIOS(fd,tios) \ 24#define SET_TERMIOS(fd,tios) \
32 cfsetospeed (tios, BAUDRATE), \ 25 cfsetospeed (tios, BAUDRATE), \
33 cfsetispeed (tios, BAUDRATE), \ 26 cfsetispeed (tios, BAUDRATE), \
34 tcsetattr (fd, TCSANOW, tios) 27 tcsetattr (fd, TCSANOW, tios)
35# else
36# ifdef TIOCSETA
37# define GET_TERMIOS(fd,tios) ioctl (fd, TIOCGETA, tios)
38# define SET_TERMIOS(fd,tios) \
39 tios->c_cflag |= BAUDRATE, \
40 ioctl (fd, TIOCSETA, tios)
41# else
42# define GET_TERMIOS(fd,tios) ioctl (fd, TCGETS, tios)
43# define SET_TERMIOS(fd,tios) \
44 tios->c_cflag |= BAUDRATE, \
45 ioctl (fd, TCSETS, tios)
46# endif
47# endif
48# define SET_TTYMODE(fd,tios) SET_TERMIOS (fd, tios)
49#else
50/* sgtty interface */
51
52# define SET_TTYMODE(fd,tt) \
53 tt->sg.sg_ispeed = tt->sg.sg_ospeed = BAUDRATE, \
54 ioctl (fd, TIOCSETP, & (tt->sg)), \
55 ioctl (fd, TIOCSETC, & (tt->tc)), \
56 ioctl (fd, TIOCSLTC, & (tt->lc)), \
57 ioctl (fd, TIOCSETD, & (tt->line)), \
58 ioctl (fd, TIOCLSET, & (tt->local))
59#endif /* HAVE_TERMIOS_H */
60 28
61/* use the fastest baud-rate */ 29/* use the fastest baud-rate */
62#ifdef B38400 30#ifdef B38400
63# define BAUDRATE B38400 31# define BAUDRATE B38400
64#else 32#else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines