]> granicus.if.org Git - gc/commitdiff
* dyn_load.c: Fix typo.
authorro@138bc75d-0d04-0410-961f-82ee72b054a4 <ro@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 11 Oct 2010 19:06:24 +0000 (19:06 +0000)
committerguest <ivmai@mail.ru>
Fri, 29 Jul 2011 06:54:30 +0000 (10:54 +0400)
* pthread_support.c (GC_get_thread_stack_base) [DEBUG_THREADS]:
Use GC_printf0.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@165328 138bc75d-0d04-0410-961f-82ee72b054a4

ChangeLog
dyn_load.c
pthread_support.c

index d9cda96895ec7dbe7549072bb7de43d94c787ac1..fd34e48032004c8718b8e346e2c55aebff93ce1b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-10-11  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       * dyn_load.c: Fix typo.
+       * pthread_support.c (GC_get_thread_stack_base) [DEBUG_THREADS]:
+       Use GC_printf0.
+
 2010-06-15  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
 
        * configure.ac (*-*-solaris2.8*): Only usr alternate thread
index 5bebc1c155d13e6f4670a6a3cbfed073b22aa331..2133f465ef92b36e53088114273860d5b3a51593 100644 (file)
 #    endif
 #  endif
 
-/* An user-supplied routine that is called to dtermine if a DSO must
+/* An user-supplied routine that is called to determine if a DSO must
    be scanned by the gc.  */
 static int (*GC_has_static_roots)(const char *, void *, size_t);
 /* Register the routine.  */
index 57c8a16a1fa574bfc5be282f7666d867fc1979c4..fd961f5d802555c17cca02ec26b7d174e554fdae 100644 (file)
@@ -1139,7 +1139,7 @@ GC_PTR GC_get_thread_stack_base()
   if (pthread_getattr_np (my_pthread, &attr) != 0)
     {
 #   ifdef DEBUG_THREADS
-      GC_printf1("Can not determine stack base for attached thread");
+      GC_printf0("Can not determine stack base for attached thread");
 #   endif
       return 0;
     }