]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix crashes when unbind_for_thread_switch signals an error.
authorEli Zaretskii <eliz@gnu.org>
Sun, 1 Sep 2013 15:43:43 +0000 (18:43 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 1 Sep 2013 15:43:43 +0000 (18:43 +0300)
 src/eval.c (unbind_for_thread_switch): Accept a 'struct
 thread_state *' argument and use specpdl_ptr and specpdl of that
 thread.  Fixes crashes if find_symbol_value signals an error.
 src/thread.c (post_acquire_global_lock): Update current_thread
 before calling unbind_for_thread_switch.  Pass the previous thread
 to unbind_for_thread_switch.

src/ChangeLog
src/eval.c
src/lisp.h
src/thread.c

index 3e901d84db9374f20a7bd351436ffc87ae52e481..705b9c771df58483cf7982c1c0ff9144dc2a0cfb 100644 (file)
@@ -1,3 +1,13 @@
+2013-09-01  Eli Zaretskii  <eliz@gnu.org>
+
+       * eval.c (unbind_for_thread_switch): Accept a 'struct
+       thread_state *' argument and use specpdl_ptr and specpdl of that
+       thread.  Fixes crashes if find_symbol_value signals an error.
+
+       * thread.c (post_acquire_global_lock): Update current_thread
+       before calling unbind_for_thread_switch.  Pass the previous thread
+       to unbind_for_thread_switch.
+
 2013-08-31  Eli Zaretskii  <eliz@gnu.org>
 
        * systhread.c (sys_cond_init): Set the 'initialized' member to
index 68a3691ad9bb04cae33572e7fbd174e8a25f5cc5..b8a61590387551767169592127ee0d04140654ec 100644 (file)
@@ -3484,11 +3484,11 @@ unbind_to (ptrdiff_t count, Lisp_Object value)
 }
 
 void
-unbind_for_thread_switch (void)
+unbind_for_thread_switch (struct thread_state *thr)
 {
   union specbinding *bind;
 
-  for (bind = specpdl_ptr; bind != specpdl; --bind)
+  for (bind = thr->m_specpdl_ptr; bind != thr->m_specpdl; --bind)
     {
       if (bind->kind >= SPECPDL_LET)
        {
index 51c09e0abb3ab9572f4d7c2225f8eefbe6b8523c..03628e13ac20684287b4359691d80a3abaa9cf6b 100644 (file)
@@ -3828,7 +3828,7 @@ extern void set_unwind_protect (ptrdiff_t, void (*) (Lisp_Object), Lisp_Object);
 extern void set_unwind_protect_ptr (ptrdiff_t, void (*) (void *), void *);
 extern Lisp_Object unbind_to (ptrdiff_t, Lisp_Object);
 extern void rebind_for_thread_switch (void);
-extern void unbind_for_thread_switch (void);
+extern void unbind_for_thread_switch (struct thread_state *);
 extern _Noreturn void error (const char *, ...) ATTRIBUTE_FORMAT_PRINTF (1, 2);
 extern _Noreturn void verror (const char *, va_list)
   ATTRIBUTE_FORMAT_PRINTF (1, 0);
index 39a21518ec611a145576850c63e611fcc436cdbe..f060a002a3a86ae48723366e2d8c649943cbf6e6 100644 (file)
@@ -55,15 +55,20 @@ static void
 post_acquire_global_lock (struct thread_state *self)
 {
   Lisp_Object buffer;
+  struct thread_state *prev_thread = current_thread;
 
-  if (self != current_thread)
+  /* Do this early on, so that code below could signal errors (e.g.,
+     unbind_for_thread_switch might) correctly, because we are already
+     running in the context of the thread pointed by SELF.  */
+  current_thread = self;
+
+  if (prev_thread != current_thread)
     {
-      /* CURRENT_THREAD is NULL if the previously current thread
+      /* PREV_THREAD is NULL if the previously current thread
         exited.  In this case, there is no reason to unbind, and
         trying will crash.  */
-      if (current_thread != NULL)
-       unbind_for_thread_switch ();
-      current_thread = self;
+      if (prev_thread != NULL)
+       unbind_for_thread_switch (prev_thread);
       rebind_for_thread_switch ();
     }