diff options
| author | Kim F. Storm | 2002-03-01 00:00:21 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2002-03-01 00:00:21 +0000 |
| commit | e4984112de3d3178f4de25fae2fca4c42510cbd1 (patch) | |
| tree | 5fee47de1ee898ab4cfd4d8c5cb50bf5ef19b4d0 | |
| parent | 81d5af8b094141856cd50c523d5d723978c2a62b (diff) | |
| download | emacs-e4984112de3d3178f4de25fae2fca4c42510cbd1.tar.gz emacs-e4984112de3d3178f4de25fae2fca4c42510cbd1.zip | |
(Fprocess_status): Document connect and failed return values.
| -rw-r--r-- | src/ChangeLog | 3 | ||||
| -rw-r--r-- | src/process.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 53709a496c5..1f04069c06a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | * process.c (Qconnect, Qfailed): New variables. | 3 | * process.c (Qconnect, Qfailed): New variables. |
| 4 | (syms_of_process): Intern and staticpro them. | 4 | (syms_of_process): Intern and staticpro them. |
| 5 | (Fprocess_status): Document connect and failed return values. | ||
| 5 | [NON_BLOCKING_CONNECT]: New conditional. | 6 | [NON_BLOCKING_CONNECT]: New conditional. |
| 6 | (connect_wait_mask, num_pending_connects): New variables. | 7 | (connect_wait_mask, num_pending_connects): New variables. |
| 7 | (status_message): Convert Qfailed status. | 8 | (status_message): Convert Qfailed status. |
| @@ -12,7 +13,7 @@ | |||
| 12 | (wait_reading_process_input): Poll for status of non-blocking | 13 | (wait_reading_process_input): Poll for status of non-blocking |
| 13 | connects. Exec sentinel directly when connect succeeds. | 14 | connects. Exec sentinel directly when connect succeeds. |
| 14 | (status_notify): Don't read process output if not yet connected. | 15 | (status_notify): Don't read process output if not yet connected. |
| 15 | 16 | ||
| 16 | 2002-02-28 Kim F. Storm <storm@cua.dk> | 17 | 2002-02-28 Kim F. Storm <storm@cua.dk> |
| 17 | 18 | ||
| 18 | * window.c: (minibuf_selected_window): Renamed from | 19 | * window.c: (minibuf_selected_window): Renamed from |
diff --git a/src/process.c b/src/process.c index 6f6f681f041..21845b98b41 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -636,6 +636,8 @@ exit -- for a process that has exited. | |||
| 636 | signal -- for a process that has got a fatal signal. | 636 | signal -- for a process that has got a fatal signal. |
| 637 | open -- for a network stream connection that is open. | 637 | open -- for a network stream connection that is open. |
| 638 | closed -- for a network stream connection that is closed. | 638 | closed -- for a network stream connection that is closed. |
| 639 | connect -- when waiting for a non-blocking connection to complete. | ||
| 640 | failed -- when a non-blocking connection has failed. | ||
| 639 | nil -- if arg is a process name and no such process exists. | 641 | nil -- if arg is a process name and no such process exists. |
| 640 | PROCESS may be a process, a buffer, the name of a process, or | 642 | PROCESS may be a process, a buffer, the name of a process, or |
| 641 | nil, indicating the current buffer's process. */) | 643 | nil, indicating the current buffer's process. */) |