]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid aborts when a thread signals an error
authorEli Zaretskii <eliz@gnu.org>
Sun, 11 Dec 2016 15:59:55 +0000 (17:59 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sun, 11 Dec 2016 15:59:55 +0000 (17:59 +0200)
* 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.

src/keyboard.c
src/keyboard.h
src/thread.h
src/w32select.c
test/src/thread-tests.el

index 01b9b3c6ba28921cc129b6c5527cf3942b5cccdb..cc78548abd0904c532c3f4d8f69bcfd81f5b01e8 100644 (file)
@@ -148,9 +148,6 @@ static Lisp_Object regular_top_level_message;
 
 static sys_jmp_buf getcjmp;
 
-/* True while doing kbd input.  */
-bool waiting_for_input;
-
 /* True while displaying for echoing.   Delays C-g throwing.  */
 
 static bool echoing;
@@ -322,10 +319,6 @@ static ptrdiff_t echo_length (void);
 /* Incremented whenever a timer is run.  */
 unsigned timers_run;
 
-/* Address (if not 0) of struct timespec to zero out if a SIGIO interrupt
-   happens.  */
-struct timespec *input_available_clear_time;
-
 /* True means use SIGIO interrupts; false means use CBREAK mode.
    Default is true if INTERRUPT_INPUT is defined.  */
 bool interrupt_input;
index a5ed5e10a98a570f34d7a6db6c9192bc31eed92d..5084c39b7c1d4aad401d901dd678b2d9edc1bc9c 100644 (file)
@@ -415,13 +415,6 @@ extern void unuse_menu_items (void);
 #define EVENT_HEAD_KIND(event_head) \
   (Fget ((event_head), Qevent_kind))
 
-/* True while doing kbd input.  */
-extern bool waiting_for_input;
-
-/* Address (if not 0) of struct timespec to zero out if a SIGIO interrupt
-   happens.  */
-extern struct timespec *input_available_clear_time;
-
 extern bool ignore_mouse_drag_p;
 
 extern Lisp_Object parse_modifiers (Lisp_Object);
index 61740321a5c9a4536c148a1c6053571407d66541..f10824f19834f4cf967ed39339804fcc3174b204 100644 (file)
@@ -155,6 +155,15 @@ struct thread_state
   int m_waiting_for_user_input_p;
 #define waiting_for_user_input_p (current_thread->m_waiting_for_user_input_p)
 
+  /* True while doing kbd input.  */
+  bool m_waiting_for_input;
+#define waiting_for_input (current_thread->m_waiting_for_input)
+
+  /* Address (if not 0) of struct timespec to zero out if a SIGIO interrupt
+   happens.  */
+  struct timespec *m_input_available_clear_time;
+#define input_available_clear_time (current_thread->m_input_available_clear_time)
+
   /* The OS identifier for this thread.  */
   sys_thread_t thread_id;
 
index 1754534c3d32a84af5a374f5273755586b01917a..36908f96afb43e74ad601c71694b18146add5cdc 100644 (file)
@@ -77,7 +77,6 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #include "w32common.h" /* os_subtype */
 #include "w32term.h"   /* for all of the w32 includes */
 #include "w32select.h"
-#include "keyboard.h"  /* for waiting_for_input */
 #include "blockinput.h"
 #include "coding.h"
 
index 4631882186ca9e0b57c800ab5f39c664744df8f0..4e7b052cba0e39a6dd55015e05f5085f3ec6b8b8 100644 (file)
      (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