dyn_load.c: Fix typo.

* dyn_load.c: Fix typo.
	* pthread_support.c (GC_get_thread_stack_base) [DEBUG_THREADS]:
	Use GC_printf0.

From-SVN: r165328
This commit is contained in:
Rainer Orth 2010-10-11 19:06:24 +00:00 committed by Rainer Orth
parent 3f1f0ae316
commit 30aeeca452
3 changed files with 8 additions and 2 deletions

View File

@ -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

View File

@ -122,7 +122,7 @@
# 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. */

View 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;
}