comparison src/sysdep.c @ 6489:6c138b61c8b4

(reset_sys_modes): Turn off O_NDELAY.
author Karl Heuer <kwzh@gnu.org>
date Wed, 23 Mar 1994 21:42:12 +0000
parents a92ee78acd12
children 1f45c2d4ff2c
comparison
equal deleted inserted replaced
6488:c6cb2f4a7ae8 6489:6c138b61c8b4
1477 reset_sigio (); 1477 reset_sigio ();
1478 fcntl (input_fd, F_SETOWN, old_fcntl_owner); 1478 fcntl (input_fd, F_SETOWN, old_fcntl_owner);
1479 } 1479 }
1480 #endif /* F_SETOWN */ 1480 #endif /* F_SETOWN */
1481 #endif /* F_SETOWN_BUG */ 1481 #endif /* F_SETOWN_BUG */
1482 #ifdef O_NDELAY
1483 fcntl (input_fd, F_SETFL, fcntl (input_fd, F_GETFL, 0) & ~O_NDELAY);
1484 #endif
1482 #endif /* F_SETFL */ 1485 #endif /* F_SETFL */
1483 #ifdef BSD4_1 1486 #ifdef BSD4_1
1484 if (interrupt_input) 1487 if (interrupt_input)
1485 reset_sigio (); 1488 reset_sigio ();
1486 #endif /* BSD4_1 */ 1489 #endif /* BSD4_1 */