comparison src/s/usg5-4.h @ 23914:17d161505a18

(TIOCSIGSEND): Don't define this if irix6. (bcopy, bcmp, bzero): Likewise.
author Karl Heuer <kwzh@gnu.org>
date Wed, 16 Dec 1998 21:46:44 +0000
parents 090728aee80a
children 63fd40a97a75
comparison
equal deleted inserted replaced
23913:d755c5c3e9a2 23914:17d161505a18
135 135
136 /* TIOCGPGRP is broken in SysVr4, so we can't send signals to PTY 136 /* TIOCGPGRP is broken in SysVr4, so we can't send signals to PTY
137 subprocesses the usual way. But TIOCSIGNAL does work for PTYs, and 137 subprocesses the usual way. But TIOCSIGNAL does work for PTYs, and
138 this is all we need. */ 138 this is all we need. */
139 139
140 #ifndef IRIX6
140 #define TIOCSIGSEND TIOCSIGNAL 141 #define TIOCSIGSEND TIOCSIGNAL
142 #endif
141 143
142 /* This change means that we don't loop through allocate_pty too many 144 /* This change means that we don't loop through allocate_pty too many
143 times in the (rare) event of a failure. */ 145 times in the (rare) event of a failure. */
144 146
145 #undef FIRST_PTY_LETTER 147 #undef FIRST_PTY_LETTER
196 198
197 /* This definition was suggested for next release. 199 /* This definition was suggested for next release.
198 So give it a try. */ 200 So give it a try. */
199 #define HAVE_SOCKETS 201 #define HAVE_SOCKETS
200 202
203 #ifndef IRIX6
201 #define bcopy(src,dst,n) memmove (dst,src,n) 204 #define bcopy(src,dst,n) memmove (dst,src,n)
202 #define bcmp(src,dst,n) memcmp (src,dst,n) 205 #define bcmp(src,dst,n) memcmp (src,dst,n)
203 #define bzero(s,n) memset (s,0,n) 206 #define bzero(s,n) memset (s,0,n)
207 #endif