From: Aditya Mandaleeka Date: Tue, 28 Jun 2016 22:37:25 +0000 (-0700) Subject: Fix path to BOTR GC section in gc.cpp (#6039) X-Git-Tag: accepted/tizen/base/20180629.140029~4161 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bbb24f97ea4ab91b731363276d2401d62f3da7cf;p=platform%2Fupstream%2Fcoreclr.git Fix path to BOTR GC section in gc.cpp (#6039) --- diff --git a/src/gc/gc.cpp b/src/gc/gc.cpp index 8481857..dd4bcb3 100644 --- a/src/gc/gc.cpp +++ b/src/gc/gc.cpp @@ -3,20 +3,19 @@ // See the LICENSE file in the project root for more information. -// +// // #Overview -// -// GC automatically manages memory allocated by managed code. -// The design doc for GC can be found at -// file:../../doc/BookOfTheRuntime/GC/GCDesign.doc -// +// +// GC automatically manages memory allocated by managed code. +// The design doc for GC can be found at Documentation/botr/garbage-collection.md +// // This file includes both the code for GC and the allocator. The most common // case for a GC to be triggered is from the allocator code. See // code:#try_allocate_more_space where it calls GarbageCollectGeneration. -// -// Entry points for the allocate is GCHeap::Alloc* which are called by the +// +// Entry points for the allocator are GCHeap::Alloc* which are called by the // allocation helpers in gcscan.cpp -// +// #include "gcpriv.h"