summaryrefslogtreecommitdiff
path: root/lisp/proced.el
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2016-03-22 01:17:56 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2016-03-22 01:19:03 -0700
commit780a605e1d2de4b975e6f1f29b491c9af419dcff (patch)
treeabbfb59c66e8a7cd50819a7bbe0e5e658d40ae54 /lisp/proced.el
parent7dba17670f42cdaa73424a2bf60925ef49671fad (diff)
downloademacs-780a605e1d2de4b975e6f1f29b491c9af419dcff.tar.gz
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/proced.el')
-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\")."
("KILL" . " (9. Kill - cannot be caught or ignored)")
("ALRM" . " (14. Alarm Clock)")
("TERM" . " (15. Termination)")
- ;; POSIX 1003.1-2001
- ;; Which systems do not support these signals so that we can
- ;; exclude them from `proced-signal-list'?
("CONT" . " (Continue executing)")
("STOP" . " (Stop executing / pause - cannot be caught or ignored)")
("TSTP" . " (Terminal stop / pause)"))