guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, master, updated. v2.1.0-127-gb86b70f


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, master, updated. v2.1.0-127-gb86b70f
Date: Wed, 09 Nov 2011 22:02:12 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=b86b70feced7d2be203be0738e1bab8d1e81a11e

The branch, master has been updated
       via  b86b70feced7d2be203be0738e1bab8d1e81a11e (commit)
      from  880e7948126e594d64cbf45c75a66ad3308ce1b3 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit b86b70feced7d2be203be0738e1bab8d1e81a11e
Author: Andy Wingo <address@hidden>
Date:   Wed Nov 9 23:02:02 2011 +0100

    disable port locking
    
    * libguile/ports.h (scm_c_lock_port, scm_c_try_lock_port)
      (scm_c_unlock_port): Disable port locking until I have time to sort
      out the bugs that are coming up.

-----------------------------------------------------------------------

Summary of changes:
 libguile/ports.h |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libguile/ports.h b/libguile/ports.h
index 624b7b8..b6db482 100644
--- a/libguile/ports.h
+++ b/libguile/ports.h
@@ -385,7 +385,7 @@ SCM_INTERNAL void scm_init_ports (void);
 SCM_INLINE_IMPLEMENTATION int
 scm_c_lock_port (SCM port)
 {
-#if SCM_USE_PTHREAD_THREADS
+#if 0 && SCM_USE_PTHREAD_THREADS
   return scm_i_pthread_mutex_lock (&SCM_PTAB_ENTRY (port)->lock);
 #else
   return 0;
@@ -395,7 +395,7 @@ scm_c_lock_port (SCM port)
 SCM_INLINE_IMPLEMENTATION int
 scm_c_try_lock_port (SCM port)
 {
-#if SCM_USE_PTHREAD_THREADS
+#if 0 && SCM_USE_PTHREAD_THREADS
   return scm_i_pthread_mutex_trylock (&SCM_PTAB_ENTRY (port)->lock);
 #else
   return 0;
@@ -405,7 +405,7 @@ scm_c_try_lock_port (SCM port)
 SCM_INLINE_IMPLEMENTATION int
 scm_c_unlock_port (SCM port)
 {
-#if SCM_USE_PTHREAD_THREADS
+#if 0 && SCM_USE_PTHREAD_THREADS
   return scm_i_pthread_mutex_unlock (&SCM_PTAB_ENTRY (port)->lock);
 #else
   return 0;


hooks/post-receive
-- 
GNU Guile



reply via email to

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