summaryrefslogtreecommitdiff
path: root/pthread_support.c
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2019-04-26 19:03:42 +0300
committerIvan Maidanski <ivmai@mail.ru>2019-04-26 19:03:42 +0300
commite5a18e6a9901640d40a314732997aabefac3f49c (patch)
tree44e40f8010f1f80e5ef083985afad574b0e519da /pthread_support.c
parent45377e49d48e268754cc99f5334b964404a89d9e (diff)
downloadbdwgc-e5a18e6a9901640d40a314732997aabefac3f49c.tar.gz
Replace 'stack base' with 'stack bottom' in the documentation
* README.md (The C Interface to the Allocator): Outline that stack base means its bottom; remove a note that client should set GC_stackbottom on HP PA machines manually. * doc/README.macros (USE_GET_STACKBASE_FOR_MAIN): Rename "stack base" to "stack bottom". * doc/porting.md (Adding Platforms to gcconfig.h): Likewise. * doc/porting.md (Adding Platforms to gcconfig.h): Rename "cool end of the stack" to "cold end of the stack"; refine documentation about STACKBOTTOM. * include/private/gcconfig.h (STACKBOTTOM): Rename "cool end" to "cold end" in comment. * include/gc.h (GC_stackbottom): Likewise. * include/private/gcconfig.h (LINUX_STACKBOTTOM): Rename "stack base" to "stack bottom" in comment. * include/gc.h (GC_stack_base, GC_call_with_stack_base): Likewise. * include/gc.h [GC_THREADS] (GC_register_my_thread): Likewise. * misc.c [!THREADS] (GC_call_with_gc_active): Likewise. * os_dep.c [LINUX_STACKBOTTOM] (GC_linux_main_stack_base): Likewise. * os_dep.c (GC_get_stack_base): Likewise. * pthread_support.c (GC_call_with_gc_active): Likewise. * win32_threads.c (GC_call_with_gc_active): Likewise.
Diffstat (limited to 'pthread_support.c')
-rw-r--r--pthread_support.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pthread_support.c b/pthread_support.c
index 42650440..6c138c1c 100644
--- a/pthread_support.c
+++ b/pthread_support.c
@@ -1418,7 +1418,7 @@ GC_API void * GC_CALL GC_call_with_gc_active(GC_fn_type fn,
LOCK(); /* This will block if the world is stopped. */
me = GC_lookup_thread(self);
- /* Adjust our stack base value (this could happen unless */
+ /* Adjust our stack bottom value (this could happen unless */
/* GC_get_stack_base() was used which returned GC_SUCCESS). */
if ((me -> flags & MAIN_THREAD) == 0) {
GC_ASSERT(me -> stack_end != NULL);