comparison src/process.c @ 85597:25d8a896764b

(unwind_request_sigio): Only define if __ultrix__.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Tue, 23 Oct 2007 21:18:26 +0000
parents 17fa7213763d
children e39319cd62d8 4bc33ffdda1a
comparison
equal deleted inserted replaced
85596:ca34d3d5d8bf 85597:25d8a896764b
2681 } 2681 }
2682 2682
2683 2683
2684 /* A version of request_sigio suitable for a record_unwind_protect. */ 2684 /* A version of request_sigio suitable for a record_unwind_protect. */
2685 2685
2686 #ifdef __ultrix__
2686 static Lisp_Object 2687 static Lisp_Object
2687 unwind_request_sigio (dummy) 2688 unwind_request_sigio (dummy)
2688 Lisp_Object dummy; 2689 Lisp_Object dummy;
2689 { 2690 {
2690 if (interrupt_input) 2691 if (interrupt_input)
2691 request_sigio (); 2692 request_sigio ();
2692 return Qnil; 2693 return Qnil;
2693 } 2694 }
2695 #endif
2694 2696
2695 /* Create a network stream/datagram client/server process. Treated 2697 /* Create a network stream/datagram client/server process. Treated
2696 exactly like a normal process when reading and writing. Primary 2698 exactly like a normal process when reading and writing. Primary
2697 differences are in status display and process deletion. A network 2699 differences are in status display and process deletion. A network
2698 connection has no PID; you cannot signal it. All you can do is 2700 connection has no PID; you cannot signal it. All you can do is