emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] test-concurrency 828b456: Fix error messages in thread.c


From: Eli Zaretskii
Subject: [Emacs-diffs] test-concurrency 828b456: Fix error messages in thread.c
Date: Sat, 10 Dec 2016 09:43:27 +0000 (UTC)

branch: test-concurrency
commit 828b4560cd4a0d8cb9b7a7a3e20ff0c53ba86cfa
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    Fix error messages in thread.c
    
    * src/thread.c (lisp_mutex_unlock, Fcondition_wait)
    (Fcondition_notify, Fthread_join): Fix error messages.
---
 src/thread.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/thread.c b/src/thread.c
index ee5b82d..ae2ce3d 100644
--- a/src/thread.c
+++ b/src/thread.c
@@ -144,7 +144,7 @@ static int
 lisp_mutex_unlock (lisp_mutex_t *mutex)
 {
   if (mutex->owner != current_thread)
-    error ("blah");
+    error ("Cannot unlock mutex owned by another thread");
 
   if (--mutex->count > 0)
     return 0;
@@ -375,7 +375,7 @@ this thread.  */)
 
   mutex = XMUTEX (cvar->mutex);
   if (!lisp_mutex_owned_p (&mutex->mutex))
-    error ("fixme");
+    error ("Condition variable's mutex is not held by current thread");
 
   flush_stack_call_func (condition_wait_callback, cvar);
 
@@ -430,7 +430,7 @@ thread.  */)
 
   mutex = XMUTEX (cvar->mutex);
   if (!lisp_mutex_owned_p (&mutex->mutex))
-    error ("fixme");
+    error ("Condition variable's mutex is not held by current thread");
 
   args.cvar = cvar;
   args.all = !NILP (all);
@@ -855,7 +855,7 @@ It is an error for a thread to try to join itself.  */)
   tstate = XTHREAD (thread);
 
   if (tstate == current_thread)
-    error ("cannot join current thread");
+    error ("Cannot join current thread");
 
   if (thread_alive_p (tstate))
     flush_stack_call_func (thread_join_callback, tstate);



reply via email to

[Prev in Thread] Current Thread [Next in Thread]