diff options
author | Eli Zaretskii <eliz@gnu.org> | 2016-12-11 17:59:55 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2016-12-11 17:59:55 +0200 |
commit | 997081634a3b6c2359226305db05c818c492a9b2 (patch) | |
tree | cc86cad29bc4a3621c0a48a6a196d87f7b5d13eb /test/src/thread-tests.el | |
parent | c0cfe9bc143686cd97d431831f47787753a95a42 (diff) | |
download | emacs-997081634a3b6c2359226305db05c818c492a9b2.tar.gz emacs-997081634a3b6c2359226305db05c818c492a9b2.tar.bz2 emacs-997081634a3b6c2359226305db05c818c492a9b2.zip |
Avoid aborts when a thread signals an error
* src/thread.h (struct thread_state): Add members
m_waiting_for_input and m_input_available_clear_time.
(waiting_for_input, input_available_clear_time): New macros.
* src/keyboard.c (waiting_for_input, input_available_clear_time):
Remove; they are now macros that reference the current thread.
(Bug#25171)
* src/w32select.c: Don't include keyboard.h.
* test/src/thread-tests.el (thread-errors): New test.
Diffstat (limited to 'test/src/thread-tests.el')
-rw-r--r-- | test/src/thread-tests.el | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/src/thread-tests.el b/test/src/thread-tests.el index 4631882186c..4e7b052cba0 100644 --- a/test/src/thread-tests.el +++ b/test/src/thread-tests.el @@ -209,5 +209,20 @@ (string= "hi bob" (condition-name (make-condition-variable (make-mutex) "hi bob"))))) +(defun call-error () + "Call `error'." + (error "Error is called")) + +;; This signals an error internally; the error should be caught. +(defun thread-custom () + (defcustom thread-custom-face 'highlight + "Face used for thread customizations." + :type 'face + :group 'widget-faces)) + +(ert-deftest thread-errors () + "Test what happens when a thread signals an error." + (should (threadp (make-thread #'call-error "call-error"))) + (should (threadp (make-thread #'thread-custom "thread-custom")))) ;;; threads.el ends here |