guile-cvs
[Top][All Lists]
Advanced

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

guile/guile-core/libguile ChangeLog coop.c thre...


From: Dirk Herrmann
Subject: guile/guile-core/libguile ChangeLog coop.c thre...
Date: Thu, 30 Nov 2000 02:16:31 -0800

CVSROOT:        /cvs
Module name:    guile
Branch:         dirk-thread-factorization-branch
Changes by:     Dirk Herrmann <address@hidden>  00/11/30 02:16:31

Modified files:
        guile-core/libguile: ChangeLog coop.c threads.c 

Log message:
        * coop.c:  Remove old non-working code.  Thanks to Julian Satchell.
        * threads.c:  Added comments.

CVSWeb URLs:
http://subversions.gnu.org/cgi-bin/cvsweb/guile/guile-core/libguile/ChangeLog.diff?only_with_tag=dirk-thread-factorization-branch&r1=1.991.2.3&r2=1.991.2.4
http://subversions.gnu.org/cgi-bin/cvsweb/guile/guile-core/libguile/coop.c.diff?only_with_tag=dirk-thread-factorization-branch&r1=1.25.2.2&r2=1.25.2.3
http://subversions.gnu.org/cgi-bin/cvsweb/guile/guile-core/libguile/threads.c.diff?only_with_tag=dirk-thread-factorization-branch&r1=1.17.2.4&r2=1.17.2.5

Patches:
Index: guile/guile-core/libguile/ChangeLog
diff -u guile/guile-core/libguile/ChangeLog:1.1180 
guile/guile-core/libguile/ChangeLog:1.1181
--- guile/guile-core/libguile/ChangeLog:1.1180  Tue Nov 28 08:37:40 2000
+++ guile/guile-core/libguile/ChangeLog Tue Nov 28 10:22:23 2000
@@ -1,5 +1,9 @@
 2000-11-28  Dirk Herrmann  <address@hidden>
 
+       * strop.c (scm_i_index):  Removed outdated comment.
+
+2000-11-28  Dirk Herrmann  <address@hidden>
+
        * struct.c (scm_struct_ref, scm_struct_set_x), symbols.c
        (scm_intern_obarray_soft), symbols.h (SCM_ROUCHARS):  Eliminate
        use of SCM_SYMBOL_UCHARS by using chars instead of unsigned
Index: guile/guile-core/libguile/coop.c
diff -u guile/guile-core/libguile/coop.c:1.24 
guile/guile-core/libguile/coop.c:1.25
--- guile/guile-core/libguile/coop.c:1.24       Mon Apr 10 05:38:19 2000
+++ guile/guile-core/libguile/coop.c    Fri Apr 21 07:16:30 2000
@@ -40,7 +40,7 @@
  * If you do not wish that, delete this exception notice.  */
 
 
-/* $Id: coop.c,v 1.24 2000/04/10 12:38:19 mdj Exp $ */
+/* $Id: coop.c,v 1.25 2000/04/21 14:16:30 mdj Exp $ */
 
 /* Cooperative thread library, based on QuickThreads */
 
@@ -50,8 +50,8 @@
 
 #include <errno.h>
 
-#include <qt.h>
-#include "eval.h"
+#include "qt/qt.h"
+#include "libguile/eval.h"
 
 /* #define COOP_STKSIZE (0x10000) */
 #define COOP_STKSIZE (scm_eval_stack)
Index: guile/guile-core/libguile/threads.c
diff -u guile/guile-core/libguile/threads.c:1.17 
guile/guile-core/libguile/threads.c:1.18
--- guile/guile-core/libguile/threads.c:1.17    Tue May 30 08:56:55 2000
+++ guile/guile-core/libguile/threads.c Fri Nov 17 08:25:04 2000
@@ -146,7 +146,9 @@
   scm_tc16_mutex = scm_make_smob_type ("mutex", sizeof (coop_m));
   scm_tc16_condvar = scm_make_smob_type ("condition-variable", sizeof 
(coop_c));
                                         
+#ifndef SCM_MAGIC_SNARFER
 #include "libguile/threads.x"
+#endif
   /* Initialize implementation specific details of the threads support */
   scm_threads_init (i);
 }



reply via email to

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