summaryrefslogtreecommitdiff
path: root/README.QUICK
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2021-11-03 09:09:56 +0300
committerIvan Maidanski <ivmai@mail.ru>2021-11-03 09:09:56 +0300
commit764d48261e9159974fa839ecc437f745fe980318 (patch)
tree2578280a234d7be359ebe2213628772ddf76830f /README.QUICK
parent9bf9fbcac07fe11b5b12f2dfa9cca30c4813a0a0 (diff)
downloadbdwgc-764d48261e9159974fa839ecc437f745fe980318.tar.gz
Refer to Makefile.direct instead of deleted Makefile file in README
(fix of commit 183c30bb0) * Makefile.am (EXTRA_DIST): Remove outdated comment exclusion of "Makefile" file. * README.QUICK (WARNINGS): Mention "Makefile.am or Makefile.direct" instead of "Makefile". * doc/README.linux: Mention "Makefile.direct" instead of "Makefile". * doc/README.sgi: Likewise.
Diffstat (limited to 'README.QUICK')
-rw-r--r--README.QUICK8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.QUICK b/README.QUICK
index a188fbbd..f15767a5 100644
--- a/README.QUICK
+++ b/README.QUICK
@@ -80,10 +80,10 @@ Do not store the only pointer to an object in memory allocated
with system malloc, since the collector usually does not scan
memory allocated in this way.
-Use with threads may be supported on your system, but requires the
-collector to be built with thread support. See Makefile. The collector
-does not guarantee to scan thread-local storage (e.g. of the kind
-accessed with pthread_getspecific()). The collector does scan
+Use with threads may be supported on your system, but requires the collector
+to be built with thread support. See Makefile.am or Makefile.direct.
+The collector does not guarantee to scan thread-local storage (e.g. of the
+kind accessed with pthread_getspecific()). The collector does scan
thread stacks though, so generally the best solution is to ensure that
any pointers stored in thread-local storage are also stored on the
thread's stack for the duration of their lifetime.