Skip to content

Commit 4b6e299

Browse files
committed
update gc
1 parent e67736f commit 4b6e299

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
## 大致流程
44

5+
GC 和用户线程并发运行,在 GC 的概念中常见的 mutator 这个词是 Dijkstra 发明的,mutator 本意是改变者,变异子,在 GC 中将用户程序称为 mutator,是因为用户代码会不断地改变对象之间的引用关系。所以我们也看到有人说 mutator 是 fancy word for the 'real program')
56
```
6-
// Garbage collector (GC).
77
//
88
// The GC runs concurrently with mutator threads, is type accurate (aka precise), allows multiple
99
// GC thread to run in parallel. It is a concurrent mark and sweep that uses a write barrier. It is

0 commit comments

Comments
 (0)