aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorPaul Eggert2016-03-22 01:17:56 -0700
committerPaul Eggert2016-03-22 01:19:03 -0700
commit780a605e1d2de4b975e6f1f29b491c9af419dcff (patch)
treeabbfb59c66e8a7cd50819a7bbe0e5e658d40ae54 /lisp
parent7dba17670f42cdaa73424a2bf60925ef49671fad (diff)
downloademacs-780a605e1d2de4b975e6f1f29b491c9af419dcff.tar.gz
emacs-780a605e1d2de4b975e6f1f29b491c9af419dcff.zip
Assume NON_BLOCKING_CONNECT (Bug#22946)
* lisp/proced.el (proced-signal-list): Omit comment about obsolete systems that do not support POSIX 1003.1-2001 signals. * src/process.c (NON_BLOCKING_CONNECT): Remove, since we can now assume POSIX 1003.1-2001 or better here. Assume it’s defined. (connect_network_socket): Assume EINPROGRESS is defined, as that’s portable too now. (Fmake_network_process): Use bool for boolean.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/proced.el3
1 files changed, 0 insertions, 3 deletions
diff --git a/lisp/proced.el b/lisp/proced.el
index dee646ced4c..db45e202088 100644
--- a/lisp/proced.el
+++ b/lisp/proced.el
@@ -78,9 +78,6 @@ the external command (usually \"kill\")."
78 ("KILL" . " (9. Kill - cannot be caught or ignored)") 78 ("KILL" . " (9. Kill - cannot be caught or ignored)")
79 ("ALRM" . " (14. Alarm Clock)") 79 ("ALRM" . " (14. Alarm Clock)")
80 ("TERM" . " (15. Termination)") 80 ("TERM" . " (15. Termination)")
81 ;; POSIX 1003.1-2001
82 ;; Which systems do not support these signals so that we can
83 ;; exclude them from `proced-signal-list'?
84 ("CONT" . " (Continue executing)") 81 ("CONT" . " (Continue executing)")
85 ("STOP" . " (Stop executing / pause - cannot be caught or ignored)") 82 ("STOP" . " (Stop executing / pause - cannot be caught or ignored)")
86 ("TSTP" . " (Terminal stop / pause)")) 83 ("TSTP" . " (Terminal stop / pause)"))