File tree 2 files changed +0
-4
lines changed
2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -110,8 +110,6 @@ It is a comma-separated list of name=val pairs setting these named variables:
110
110
with a trivial allocator that obtains memory from the operating system and
111
111
never reclaims any memory.
112
112
113
- scavenge: scavenge=1 enables debugging mode of heap scavenger.
114
-
115
113
scavtrace: setting scavtrace=1 causes the runtime to emit a single line to standard
116
114
error, roughly once per GC cycle, summarizing the amount of work done by the
117
115
scavenger as well as the total amount of memory returned to the operating system
Original file line number Diff line number Diff line change @@ -310,7 +310,6 @@ var debug struct {
310
310
gctrace int32
311
311
invalidptr int32
312
312
madvdontneed int32 // for Linux; issue 28466
313
- scavenge int32
314
313
scavtrace int32
315
314
scheddetail int32
316
315
schedtrace int32
@@ -339,7 +338,6 @@ var dbgvars = []dbgVar{
339
338
{"invalidptr" , & debug .invalidptr },
340
339
{"madvdontneed" , & debug .madvdontneed },
341
340
{"sbrk" , & debug .sbrk },
342
- {"scavenge" , & debug .scavenge },
343
341
{"scavtrace" , & debug .scavtrace },
344
342
{"scheddetail" , & debug .scheddetail },
345
343
{"schedtrace" , & debug .schedtrace },
You can’t perform that action at this time.
0 commit comments