From b8fd3fac8c74366d6f68acb7be32bd9c761e04d3 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Wed, 3 Apr 2019 11:00:00 +0300 Subject: [PATCH] Fix a typo (GC_NPROCS spelling) in a comment in gc.h * include/gc.h [GC_THREADS] (GC_parallel): Fix a typo in comment ("GC_NPROCS"). --- include/gc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/gc.h b/include/gc.h index 2e35a37e..5cd39e7c 100644 --- a/include/gc.h +++ b/include/gc.h @@ -92,8 +92,8 @@ GC_API GC_word GC_CALL GC_get_gc_no(void); /* multiprocessors. Currently set only */ /* implicitly if collector is built with */ /* PARALLEL_MARK defined and if either: */ - /* Env variable GC_NPROC is set to > 1, or */ - /* GC_NPROC is not set and this is an MP. */ + /* Env variable GC_NPROCS is set to > 1, or */ + /* GC_NPROCS is not set and this is an MP. */ /* If GC_parallel is on (non-zero), incremental */ /* collection is only partially functional, */ /* and may not be desirable. The getter does */ -- 2.50.1