1
0
mirror of https://github.com/golang/go synced 2024-11-21 12:04:41 -07:00

runtime: delete the function and code related to maxObjsPerSpan

maxObjsPerSpan is no longer used, so delete the related function and code
This commit is contained in:
lennonchan 2024-11-09 10:40:33 +08:00 committed by GitHub
parent 671a502a46
commit 1ca7d99504
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -89,7 +89,6 @@ const (
largeSizeDiv = 128
_NumSizeClasses = 68
_PageShift = 13
maxObjsPerSpan = 1024
)
var class_to_size = [_NumSizeClasses]uint16{0, 8, 16, 24, 32, 48, 64, 80, 96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 256, 288, 320, 352, 384, 416, 448, 480, 512, 576, 640, 704, 768, 896, 1024, 1152, 1280, 1408, 1536, 1792, 2048, 2304, 2688, 3072, 3200, 3456, 4096, 4864, 5376, 6144, 6528, 6784, 6912, 8192, 9472, 9728, 10240, 10880, 12288, 13568, 14336, 16384, 18432, 19072, 20480, 21760, 24576, 27264, 28672, 32768}