diff options
| author | Stefan Monnier | 2007-10-23 21:18:26 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-10-23 21:18:26 +0000 |
| commit | 98228e72cabfc932e78ad01f1e28cce19ddf8df2 (patch) | |
| tree | c79d0e43e13795e53d4c43a2fa37f94ced82f1f2 /src/process.c | |
| parent | 1baf6db97df77cb91cd3f5007f994d9768e0041d (diff) | |
| download | emacs-98228e72cabfc932e78ad01f1e28cce19ddf8df2.tar.gz emacs-98228e72cabfc932e78ad01f1e28cce19ddf8df2.zip | |
(unwind_request_sigio): Only define if __ultrix__.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/process.c b/src/process.c index bbf754b971d..eca9c47e582 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -2683,6 +2683,7 @@ OPTION is not a supported option, return nil instead; otherwise return t. */) | |||
| 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; |
| @@ -2691,6 +2692,7 @@ unwind_request_sigio (dummy) | |||
| 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 |